diff options
author | Eugenio Favalli <elvenprogrammer@gmail.com> | 2006-07-26 13:48:36 +0000 |
---|---|---|
committer | Eugenio Favalli <elvenprogrammer@gmail.com> | 2006-07-26 13:48:36 +0000 |
commit | 4af405cd9dc675ef63ac4d993468f4868de85f6a (patch) | |
tree | dd6a4e9cd129d5f8713d548f3ae40262d274c1b7 /src/being.cpp | |
parent | 9516197b54715a660ea86d3d1c85f21f8a7cd918 (diff) | |
download | mana-client-4af405cd9dc675ef63ac4d993468f4868de85f6a.tar.gz mana-client-4af405cd9dc675ef63ac4d993468f4868de85f6a.tar.bz2 mana-client-4af405cd9dc675ef63ac4d993468f4868de85f6a.tar.xz mana-client-4af405cd9dc675ef63ac4d993468f4868de85f6a.zip |
Fixed direction and action issues when changing appeareance, frames are still out of sync.
Diffstat (limited to 'src/being.cpp')
-rw-r--r-- | src/being.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/being.cpp b/src/being.cpp index 8a55f2e2..4256bdc7 100644 --- a/src/being.cpp +++ b/src/being.cpp @@ -164,9 +164,9 @@ Being::setMap(Map *map) } void -Being::setAction(Action action) +Being::setAction(Uint8 action) { - if (action != mAction) + //if (action != mAction) { std::string currentAction = "stand"; switch (action) |