diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/game-server/character.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -2,6 +2,7 @@ * src/utils/mathutils.cpp: Fixed miscompilation of rsqrt due to type aliasing and sped up sqrt. + * src/game-server/character.cpp: Fixed initial attribute status. 2007-04-11 Philipp Sehmisch <tmw@crushnet.org> diff --git a/src/game-server/character.cpp b/src/game-server/character.cpp index e2d45666..f05ebf1e 100644 --- a/src/game-server/character.cpp +++ b/src/game-server/character.cpp @@ -33,6 +33,7 @@ InventoryItem tempItem; Character::Character(MessageIn & msg): Being(OBJECT_CHARACTER, 65535), mClient(NULL), + mAttributesChanged(true), mDatabaseID(-1), mName(""), mGender(0), mHairStyle(0), mHairColor(0), mLevel(0), mMoney(0) { |