From 10b5b99e5e7e5f332c077a2d261df8f02f111c4f Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 1 Oct 2014 17:21:42 +0300 Subject: Move INT stat from net enum into attributes. --- src/net/eathena/playerhandler.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/net/eathena/playerhandler.cpp') 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); -- cgit v1.2.3-70-g09d2