diff options
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/eathena/npchandler.cpp | 3 | ||||
-rw-r--r-- | src/net/serverinfo.h | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/net/eathena/npchandler.cpp b/src/net/eathena/npchandler.cpp index c68dd35fd..3166a49cb 100644 --- a/src/net/eathena/npchandler.cpp +++ b/src/net/eathena/npchandler.cpp @@ -242,7 +242,8 @@ int NpcHandler::getNpc(Net::MessageIn &msg, bool haveLength) return npcId; } -void NpcHandler::processNpcCutin(Net::MessageIn &msg A_UNUSED, int npcId A_UNUSED) +void NpcHandler::processNpcCutin(Net::MessageIn &msg A_UNUSED, + int npcId A_UNUSED) { msg.readString(64); // image name msg.readInt8(); // type diff --git a/src/net/serverinfo.h b/src/net/serverinfo.h index a8480cf1e..232ab532a 100644 --- a/src/net/serverinfo.h +++ b/src/net/serverinfo.h @@ -37,7 +37,7 @@ public: MANASERV, TMWATHENA, EVOL, - EATHENA, + EATHENA }; typedef std::pair<int, std::string> VersionString; |