summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--src/game-server/character.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d0e6074a..a5b0ddb8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)
{