summaryrefslogtreecommitdiff
path: root/src/being/being.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-11-14 17:25:37 +0300
committerAndrei Karas <akaras@inbox.ru>2015-11-14 17:25:37 +0300
commit15424641cca695650f4b56c37711c12c81cf2c32 (patch)
tree6438f82c7542e265897c98565242767b2f9a0adc /src/being/being.cpp
parent1a5c1d155337923ab8b0c208ba7cc4dc3cb70e18 (diff)
downloadplus-15424641cca695650f4b56c37711c12c81cf2c32.tar.gz
plus-15424641cca695650f4b56c37711c12c81cf2c32.tar.bz2
plus-15424641cca695650f4b56c37711c12c81cf2c32.tar.xz
plus-15424641cca695650f4b56c37711c12c81cf2c32.zip
Add cast action to beings.
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r--src/being/being.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp
index b4ea52df1..dd06c918d 100644
--- a/src/being/being.cpp
+++ b/src/being/being.cpp
@@ -1358,6 +1358,7 @@ std::string Being::getAttackAction(const Attack *const attack1) const
getSpriteAction(Dead, DEAD)
getSpriteAction(Spawn, SPAWN)
+getSpriteAction(Cast, CAST)
std::string Being::getStandAction() const
{
@@ -1442,6 +1443,9 @@ void Being::setAction(const BeingActionT &action, const int attackId)
}
}
break;
+ case BeingAction::CAST:
+ currentAction = getCastAction();
+ break;
case BeingAction::HURT:
if (mInfo)
{