diff options
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | data/icons/The Mana World.icns | bin | 0 -> 65136 bytes | |||
-rw-r--r-- | src/net/playerhandler.cpp | 1 |
3 files changed, 10 insertions, 3 deletions
@@ -1,7 +1,13 @@ -2007-06-11 Philipp Sehmisch <tmw@crushnet.org> +2007-06-12 David Athay <ko2fan@gmail.com> - * src/particle.h, src/being.cpp: Fixed a bug that prevented being-controlled - particles from being deleted (thanks to tuchs for reporting). + * src/net/playerhandler.cpp, data/icons/The Mana World.icns: Fixed bug + with DEF_BONUS not updating Mantis id: 0000087 and add Mac OSX icon. + +»¿2007-06-11 Philipp Sehmisch <tmw@crushnet.org> + + * src/particle.h, src/being.cpp: Fixed a bug that prevented + being-controlled particles from being deleted (thanks to tuchs for + reporting). 2007-06-06 Bjørn Lindeijer <bjorn@lindeijer.nl> diff --git a/data/icons/The Mana World.icns b/data/icons/The Mana World.icns Binary files differnew file mode 100644 index 00000000..7230a099 --- /dev/null +++ b/data/icons/The Mana World.icns diff --git a/src/net/playerhandler.cpp b/src/net/playerhandler.cpp index 0eab86ca..514e7538 100644 --- a/src/net/playerhandler.cpp +++ b/src/net/playerhandler.cpp @@ -174,6 +174,7 @@ void PlayerHandler::handleMessage(MessageIn *msg) case 0x0029: player_node->ATK = value; break; case 0x002b: player_node->MATK = value; break; case 0x002d: player_node->DEF = value; break; + case 0x002e: player_node->DEF_BONUS = value; break; case 0x002f: player_node->MDEF = value; break; case 0x0031: player_node->HIT = value; break; case 0x0032: player_node->FLEE = value; break; |