diff options
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/attrs.h | 4 | ||||
-rw-r--r-- | src/net/eathena/charserverhandler.cpp | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/src/net/eathena/attrs.h b/src/net/eathena/attrs.h index a8db3fec5..0c3edfada 100644 --- a/src/net/eathena/attrs.h +++ b/src/net/eathena/attrs.h @@ -25,10 +25,6 @@ namespace EAthena { - enum - { - JOB = 0xa - }; } // namespace EAthena #endif // NET_EATHENA_ATTRS_H diff --git a/src/net/eathena/charserverhandler.cpp b/src/net/eathena/charserverhandler.cpp index 6a0bd6509..9dbdb7cad 100644 --- a/src/net/eathena/charserverhandler.cpp +++ b/src/net/eathena/charserverhandler.cpp @@ -148,7 +148,7 @@ void CharServerHandler::readPlayerData(Net::MessageIn &msg, PlayerInfoBackend &data = character->data; data.mAttributes[Attributes::EXP] = msg.readInt32("exp"); data.mAttributes[Attributes::MONEY] = msg.readInt32("money"); - Stat &jobStat = data.mStats[JOB]; + Stat &jobStat = data.mStats[Attributes::JOB]; jobStat.exp = msg.readInt32("job"); const int temp = msg.readInt32("job level"); |