summaryrefslogtreecommitdiff
path: root/src/net/tmwa
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tmwa')
-rw-r--r--src/net/tmwa/attrs.h3
-rw-r--r--src/net/tmwa/generalhandler.cpp3
-rw-r--r--src/net/tmwa/playerhandler.cpp9
3 files changed, 10 insertions, 5 deletions
diff --git a/src/net/tmwa/attrs.h b/src/net/tmwa/attrs.h
index fe2068965..746b05607 100644
--- a/src/net/tmwa/attrs.h
+++ b/src/net/tmwa/attrs.h
@@ -31,8 +31,7 @@ namespace TmwAthena
STR = 0xd,
AGI,
- VIT,
- INT
+ VIT
};
} // namespace TmwAthena
diff --git a/src/net/tmwa/generalhandler.cpp b/src/net/tmwa/generalhandler.cpp
index c0e341b00..f2ed990fe 100644
--- a/src/net/tmwa/generalhandler.cpp
+++ b/src/net/tmwa/generalhandler.cpp
@@ -311,7 +311,8 @@ void GeneralHandler::gameStarted() const
// TRANSLATORS: player stat
statusWindow->addAttribute(VIT, _("Vitality"), "vit", true);
// TRANSLATORS: player stat
- statusWindow->addAttribute(INT, _("Intelligence"), "int", true);
+ statusWindow->addAttribute(Attributes::INT,
+ _("Intelligence"), "int", true);
// TRANSLATORS: player stat
statusWindow->addAttribute(Attributes::DEX, _("Dexterity"), "dex", true);
// TRANSLATORS: player stat
diff --git a/src/net/tmwa/playerhandler.cpp b/src/net/tmwa/playerhandler.cpp
index 5ef1439fe..78d4876f2 100644
--- a/src/net/tmwa/playerhandler.cpp
+++ b/src/net/tmwa/playerhandler.cpp
@@ -380,11 +380,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);