diff options
-rw-r--r-- | src/game-server/attribute.h | 2 | ||||
-rw-r--r-- | src/game-server/mapcomposite.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/game-server/attribute.h b/src/game-server/attribute.h index 82303ff8..736e54a6 100644 --- a/src/game-server/attribute.h +++ b/src/game-server/attribute.h @@ -134,8 +134,8 @@ class Attribute public: Attribute() : mBase(0) - , mMaxValue(0) , mMinValue(0) + , mMaxValue(0) {throw;} // DEBUG; Find improper constructions Attribute(const AttributeManager::AttributeInfo &info); diff --git a/src/game-server/mapcomposite.cpp b/src/game-server/mapcomposite.cpp index 485492db..4c7dc66a 100644 --- a/src/game-server/mapcomposite.cpp +++ b/src/game-server/mapcomposite.cpp @@ -464,10 +464,10 @@ Script::Ref MapComposite::mUpdateCallback; MapComposite::MapComposite(int id, const std::string &name): mActive(false), mMap(0), - mPvPRules(PVP_NONE), mContent(0), mName(name), - mID(id) + mID(id), + mPvPRules(PVP_NONE) { } |