1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-13 01:20:34 +02:00

castSpellThisTurn to bool var

This commit is contained in:
Laserlicht
2024-09-18 21:24:27 +02:00
parent 0aaafc4c8a
commit 735af83294
4 changed files with 9 additions and 9 deletions

View File

@ -330,7 +330,7 @@ CUnitState::CUnitState():
drainedMana(false),
fear(false),
hadMorale(false),
usedSpell(SpellID::NONE),
castSpellThisTurn(false),
ghost(false),
ghostPending(false),
movedThisRound(false),
@ -363,7 +363,7 @@ CUnitState & CUnitState::operator=(const CUnitState & other)
drainedMana = other.drainedMana;
fear = other.fear;
hadMorale = other.hadMorale;
usedSpell = other.usedSpell;
castSpellThisTurn = other.castSpellThisTurn;
ghost = other.ghost;
ghostPending = other.ghostPending;
movedThisRound = other.movedThisRound;
@ -534,7 +534,7 @@ bool CUnitState::hasClone() const
bool CUnitState::canCast() const
{
return casts.canUse(1) && usedSpell == SpellID::NONE;//do not check specific cast abilities here
return casts.canUse(1) && !castSpellThisTurn;//do not check specific cast abilities here
}
bool CUnitState::isCaster() const
@ -750,7 +750,7 @@ void CUnitState::serializeJson(JsonSerializeFormat & handler)
handler.serializeBool("drainedMana", drainedMana);
handler.serializeBool("fear", fear);
handler.serializeBool("hadMorale", hadMorale);
handler.serializeInt("usedSpell", usedSpell);
handler.serializeBool("castSpellThisTurn", castSpellThisTurn);
handler.serializeBool("ghost", ghost);
handler.serializeBool("ghostPending", ghostPending);
handler.serializeBool("moved", movedThisRound);
@ -785,7 +785,7 @@ void CUnitState::reset()
drainedMana = false;
fear = false;
hadMorale = false;
usedSpell = SpellID::NONE;
castSpellThisTurn = false;
ghost = false;
ghostPending = false;
movedThisRound = false;
@ -868,7 +868,7 @@ void CUnitState::afterNewRound()
waitedThisTurn = false;
movedThisRound = false;
hadMorale = false;
usedSpell = SpellID::NONE;
castSpellThisTurn = false;
fear = false;
drainedMana = false;
counterAttacks.reset();