diff options
Diffstat (limited to 'src/being/actorsprite.cpp')
-rw-r--r-- | src/being/actorsprite.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/being/actorsprite.cpp b/src/being/actorsprite.cpp index 343018204..9f21d4996 100644 --- a/src/being/actorsprite.cpp +++ b/src/being/actorsprite.cpp @@ -73,7 +73,8 @@ ActorSprite::ActorSprite(const int id) : mCursorPaddingY(0), mMustResetParticles(false), mPoison(false), - mHaveCart(false) + mHaveCart(false), + mRiding(false) { } @@ -220,8 +221,10 @@ void ActorSprite::updateStatusEffect(const int index, const bool newStatus) return; if (effect->isPoison() && getType() == ActorType::Player) setPoison(newStatus); - if (effect->isCart() && localPlayer == this) + else if (effect->isCart() && localPlayer == this) setHaveCart(newStatus); + else if (effect->isRiding()) + setRiding(newStatus); handleStatusEffect(effect, index); } |