diff options
author | Philipp Sehmisch <tmw@crushnet.org> | 2008-03-13 07:29:30 +0000 |
---|---|---|
committer | Philipp Sehmisch <tmw@crushnet.org> | 2008-03-13 07:29:30 +0000 |
commit | fe474eb4fae9d89e3797d0ceaae6613798ce491f (patch) | |
tree | 2a91b2f17636ae7b20eea06a28a89942f6f36d39 /src/monster.cpp | |
parent | 3a275cc81fe9aa1cb6736cdf12211e13e93cf2cf (diff) | |
download | mana-fe474eb4fae9d89e3797d0ceaae6613798ce491f.tar.gz mana-fe474eb4fae9d89e3797d0ceaae6613798ce491f.tar.bz2 mana-fe474eb4fae9d89e3797d0ceaae6613798ce491f.tar.xz mana-fe474eb4fae9d89e3797d0ceaae6613798ce491f.zip |
Synchronized pathfinding algorithmns with those used by the server to avoid asynchronisation.
Diffstat (limited to 'src/monster.cpp')
-rw-r--r-- | src/monster.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/monster.cpp b/src/monster.cpp index 5fbcfaea..abc7946f 100644 --- a/src/monster.cpp +++ b/src/monster.cpp @@ -44,6 +44,11 @@ Monster::Monster(Uint16 id, Uint16 job, Map *map): AnimatedSprite::load("graphics/sprites/" + filename); } +Monster::~Monster() +{ + if (mMap) mMap->freeTile(mX / 32, mY / 32, getBlockType()); +} + Being::Type Monster::getType() const { |