diff options
author | Bertram <yohanndotferreiraatorange.fr> | 2010-04-16 13:58:56 +0200 |
---|---|---|
committer | Bertram <yohanndotferreiraatorange.fr> | 2010-04-17 12:03:44 +0200 |
commit | 3ae525b05858af105cc7e3eb6ac7316fc2f5bbd5 (patch) | |
tree | 5737c40d37a7b87897b9dc9b422198b28a18b13a /src/monster.cpp | |
parent | 924760c45e0f1aa1105e192bd83d6a4ce2c80f81 (diff) | |
download | mana-3ae525b05858af105cc7e3eb6ac7316fc2f5bbd5.tar.gz mana-3ae525b05858af105cc7e3eb6ac7316fc2f5bbd5.tar.bz2 mana-3ae525b05858af105cc7e3eb6ac7316fc2f5bbd5.tar.xz mana-3ae525b05858af105cc7e3eb6ac7316fc2f5bbd5.zip |
Changed eAthena protocol name to TmwAthena and changed the config files accordingly.
This makes room for the actual eAthena protocol future inclusion.
Diffstat (limited to 'src/monster.cpp')
-rw-r--r-- | src/monster.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/monster.cpp b/src/monster.cpp index 0876b08d..d25c6c90 100644 --- a/src/monster.cpp +++ b/src/monster.cpp @@ -49,7 +49,7 @@ Monster::Monster(int id, int subtype, Map *map): void Monster::logic() { - if ((Net::getNetworkType() == ServerInfo::EATHENA) && (mAction != STAND)) + if ((Net::getNetworkType() == ServerInfo::TMWATHENA) && (mAction != STAND)) { mFrame = (int) ((get_elapsed_time(mWalkTime) * 4) / getWalkSpeed().x); |