mirror of
https://github.com/vcmi/vcmi.git
synced 2025-04-02 22:05:43 +02:00
Fix spellcasters with massive spells
This commit is contained in:
parent
dc099b2a35
commit
9a19feaf4a
@ -480,6 +480,9 @@ bool BattleActionsController::actionIsLegal(PossiblePlayerBattleAction action, B
|
|||||||
case PossiblePlayerBattleAction::SHOOT:
|
case PossiblePlayerBattleAction::SHOOT:
|
||||||
return owner.curInt->cb->battleCanShoot(owner.stacksController->getActiveStack(), targetHex);
|
return owner.curInt->cb->battleCanShoot(owner.stacksController->getActiveStack(), targetHex);
|
||||||
|
|
||||||
|
case PossiblePlayerBattleAction::NO_LOCATION:
|
||||||
|
return false;
|
||||||
|
|
||||||
case PossiblePlayerBattleAction::ANY_LOCATION:
|
case PossiblePlayerBattleAction::ANY_LOCATION:
|
||||||
return isCastingPossibleHere(action.spell().toSpell(), owner.stacksController->getActiveStack(), targetStack, targetHex);
|
return isCastingPossibleHere(action.spell().toSpell(), owner.stacksController->getActiveStack(), targetStack, targetHex);
|
||||||
|
|
||||||
|
@ -10,6 +10,8 @@
|
|||||||
|
|
||||||
#include "../GameConstants.h"
|
#include "../GameConstants.h"
|
||||||
|
|
||||||
|
VCMI_LIB_NAMESPACE_BEGIN
|
||||||
|
|
||||||
class PossiblePlayerBattleAction // actions performed at l-click
|
class PossiblePlayerBattleAction // actions performed at l-click
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -72,3 +74,5 @@ public:
|
|||||||
return action == other.action && spellToCast == other.spellToCast;
|
return action == other.action && spellToCast == other.spellToCast;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
VCMI_LIB_NAMESPACE_END
|
||||||
|
Loading…
x
Reference in New Issue
Block a user