除了充盈都做完了
This commit is contained in:
@@ -115,6 +115,13 @@ namespace Continentis.MainGame.Character
|
||||
/// <returns></returns>
|
||||
public bool FocusingCheck(out CharacterCombatBuffBase existingBuff)
|
||||
{
|
||||
if (buffType != BuffType.Focusing)
|
||||
{
|
||||
Debug.LogError("FocusingCheck只能用于专注类Buff");
|
||||
existingBuff = null;
|
||||
return false;
|
||||
}
|
||||
|
||||
// 移除超出上限的专注类Buff
|
||||
List<CharacterCombatBuffBase> focusingBuffs =
|
||||
attachedCharacter.combatBuffSubmodule.buffList.Where(buff => buff.buffType == BuffType.Focusing).ToList();
|
||||
|
||||
Reference in New Issue
Block a user