diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-23 21:03:27 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-23 21:03:27 +0300 |
commit | 4b807a6184b3fcd9ba3df5d96f199917d88adc82 (patch) | |
tree | a62e22d2b53476f4fbe54040f262a86746e393b6 /src/being/localplayer.h | |
parent | 4a0aa65d1b215f8f51c6ff5a0a048f9898be6cd0 (diff) | |
download | plus-4b807a6184b3fcd9ba3df5d96f199917d88adc82.tar.gz plus-4b807a6184b3fcd9ba3df5d96f199917d88adc82.tar.bz2 plus-4b807a6184b3fcd9ba3df5d96f199917d88adc82.tar.xz plus-4b807a6184b3fcd9ba3df5d96f199917d88adc82.zip |
Add status effect id type from int to int32_t.
Diffstat (limited to 'src/being/localplayer.h')
-rw-r--r-- | src/being/localplayer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being/localplayer.h b/src/being/localplayer.h index 732c27c7f..ccecb18fb 100644 --- a/src/being/localplayer.h +++ b/src/being/localplayer.h @@ -427,7 +427,7 @@ class LocalPlayer final : public Being, void updateCoords() override final; void handleStatusEffect(const StatusEffect *const effect, - const int effectId) override final; + const int32_t effectId) override final; void startWalking(const unsigned char dir); @@ -460,7 +460,7 @@ class LocalPlayer final : public Being, int mLastAction; // Time stamp of the last action, -1 if none. - std::vector<int> mStatusEffectIcons; + std::vector<int32_t> mStatusEffectIcons; typedef std::pair<std::string, UserColorIdT> MessagePair; /** Queued messages*/ |