From 462867b1d99cf63a27566449cbf8f0feda7f1ec6 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 28 Oct 2013 14:30:31 +0300 Subject: Revert "Remove setMap from being constructor." This reverts commit 9cf563fa7f4059bfddd82efdaa89df2ed07a6d7c. --- src/being/being.cpp | 4 +++- src/being/being.h | 4 +++- src/being/localplayer.cpp | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) (limited to 'src/being') diff --git a/src/being/being.cpp b/src/being/being.cpp index 4745f516e..fdd706bbe 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -99,7 +99,8 @@ std::list beingInfoCache; typedef std::map::const_iterator GuildsMapCIter; typedef std::map::const_iterator IntMapCIter; -Being::Being(const int id, const Type type, const uint16_t subtype) : +Being::Being(const int id, const Type type, const uint16_t subtype, + Map *const map) : ActorSprite(id), mNextSound(), mInfo(BeingInfo::unknown), @@ -189,6 +190,7 @@ Being::Being(const int id, const Type type, const uint16_t subtype) : mSpriteHide[f] = 0; } + setMap(map); setSubtype(subtype, 0); if (mType == PLAYER) diff --git a/src/being/being.h b/src/being/being.h index 90a351af0..313a92c2d 100644 --- a/src/being/being.h +++ b/src/being/being.h @@ -155,8 +155,10 @@ class Being : public ActorSprite, public ConfigListener * * @param id a unique being id * @param subtype partly determines the type of the being + * @param map the map the being is on */ - Being(const int id, const Type type, const uint16_t subtype); + Being(const int id, const Type type, const uint16_t subtype, + Map *const map); A_DELETE_COPY(Being) diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp index 17424e6a8..6df48dec7 100644 --- a/src/being/localplayer.cpp +++ b/src/being/localplayer.cpp @@ -88,7 +88,7 @@ extern MiniStatusWindow *miniStatusWindow; extern SkillDialog *skillDialog; LocalPlayer::LocalPlayer(const int id, const int subtype) : - Being(id, PLAYER, subtype), + Being(id, PLAYER, subtype, nullptr), mGMLevel(0), mInvertDirection(0), mCrazyMoveType(config.getIntValue("crazyMoveType")), -- cgit v1.2.3-70-g09d2