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

Use new battleGetStacksIf method

This commit is contained in:
AlexVinS
2014-05-17 14:36:49 +04:00
parent 0e93ec28c5
commit d9368ca5ba
4 changed files with 27 additions and 34 deletions

View File

@ -317,6 +317,12 @@ bool CSpell::isNegative() const
return positiveness == NEGATIVE;
}
bool CSpell::isNeutral() const
{
return positiveness == NEUTRAL;
}
bool CSpell::isRisingSpell() const
{
return isRising;