diff options
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 1bdf1a39e..75996016b 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -312,11 +312,16 @@ void PlayerHandler::processPlayerStatUpdate5(Net::MessageIn &msg) msg.readUInt8("vit cost"); val = msg.readUInt8("int"); - PlayerInfo::setStatBase(INT, val); + PlayerInfo::setStatBase(Attributes::INT, val); if (statusWindow) - statusWindow->setPointsNeeded(INT, msg.readUInt8("int cost")); + { + statusWindow->setPointsNeeded(Attributes::INT, + msg.readUInt8("int cost")); + } else + { msg.readUInt8("int cost"); + } val = msg.readUInt8("dex"); PlayerInfo::setStatBase(Attributes::DEX, val); |