summaryrefslogtreecommitdiff
path: root/src/net/eathena
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/eathena')
-rw-r--r--src/net/eathena/charserverhandler.cpp2
-rw-r--r--src/net/eathena/charserverhandler.h2
-rw-r--r--src/net/eathena/guildhandler.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/net/eathena/charserverhandler.cpp b/src/net/eathena/charserverhandler.cpp
index 94530f407..835360c64 100644
--- a/src/net/eathena/charserverhandler.cpp
+++ b/src/net/eathena/charserverhandler.cpp
@@ -301,7 +301,7 @@ void CharServerHandler::chooseCharacter(Net::Character *const character)
}
void CharServerHandler::newCharacter(const std::string &name, const int slot,
- const Gender::Type gender,
+ const GenderT gender,
const int hairstyle, const int hairColor,
const unsigned char race,
const uint16_t look,
diff --git a/src/net/eathena/charserverhandler.h b/src/net/eathena/charserverhandler.h
index 64968cee4..60f753967 100644
--- a/src/net/eathena/charserverhandler.h
+++ b/src/net/eathena/charserverhandler.h
@@ -47,7 +47,7 @@ class CharServerHandler final : public MessageHandler,
void newCharacter(const std::string &name,
const int slot,
- const Gender::Type gender,
+ const GenderT gender,
const int hairstyle,
const int hairColor,
const unsigned char race,
diff --git a/src/net/eathena/guildhandler.cpp b/src/net/eathena/guildhandler.cpp
index 85609581b..bffe95b94 100644
--- a/src/net/eathena/guildhandler.cpp
+++ b/src/net/eathena/guildhandler.cpp
@@ -399,7 +399,7 @@ void GuildHandler::processGuildMemberLogin(Net::MessageIn &msg)
const BeingId accountId = msg.readBeingId("account id");
const int charId = msg.readInt32("char id");
const int online = msg.readInt32("flag");
- const Gender::Type gender = Being::intToGender(static_cast<uint8_t>(
+ const GenderT gender = Being::intToGender(static_cast<uint8_t>(
msg.readInt16("sex")));
msg.readInt16("hair");
msg.readInt16("hair color");