summaryrefslogtreecommitdiff
path: root/src/being.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2006-08-26 16:36:05 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2006-08-26 16:36:05 +0000
commit00d7badb647b4293c444c0374985b7f1ea8a1ed1 (patch)
tree1e8ef25719f0954388a9c50bcf1e360f37540563 /src/being.cpp
parentef4486580fc7b8293555fcabc398ed0c2b90d78e (diff)
downloadmana-client-00d7badb647b4293c444c0374985b7f1ea8a1ed1.tar.gz
mana-client-00d7badb647b4293c444c0374985b7f1ea8a1ed1.tar.bz2
mana-client-00d7badb647b4293c444c0374985b7f1ea8a1ed1.tar.xz
mana-client-00d7badb647b4293c444c0374985b7f1ea8a1ed1.zip
Fixed player sprite not showing up.
Diffstat (limited to 'src/being.cpp')
-rw-r--r--src/being.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/being.cpp b/src/being.cpp
index 70e3eb8e..87332c7a 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -46,7 +46,6 @@ PATH_NODE::PATH_NODE(Uint16 iX, Uint16 iY):
}
Being::Being(Uint32 id, Uint16 job, Map *map):
- mSex(2),
mJob(job),
mX(0), mY(0), mDirection(DOWN),
mAction(0),
@@ -55,6 +54,7 @@ Being::Being(Uint32 id, Uint16 job, Map *map):
mAttackSpeed(350),
mEquipment(new Equipment()),
mId(id),
+ mSex(2),
mWeapon(0),
mWalkSpeed(150),
mMap(NULL),