summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/net/eathena/charserverhandler.cpp2
-rw-r--r--src/net/eathena/serverfeatures.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/net/eathena/charserverhandler.cpp b/src/net/eathena/charserverhandler.cpp
index 0b0af5033..d629be708 100644
--- a/src/net/eathena/charserverhandler.cpp
+++ b/src/net/eathena/charserverhandler.cpp
@@ -294,6 +294,8 @@ void CharServerHandler::newCharacter(const std::string &name, const int slot,
sex = Being::genderToInt(gender);
outMsg.writeInt8(sex, "gender");
}
+ if (serverFeatures->haveLookSelection())
+ outMsg.writeInt16(static_cast<int16_t>(look), "look");
}
void CharServerHandler::deleteCharacter(Net::Character *const character,
diff --git a/src/net/eathena/serverfeatures.cpp b/src/net/eathena/serverfeatures.cpp
index 956c134e3..0e684b00a 100644
--- a/src/net/eathena/serverfeatures.cpp
+++ b/src/net/eathena/serverfeatures.cpp
@@ -92,7 +92,7 @@ bool ServerFeatures::haveRaceSelection() const
bool ServerFeatures::haveLookSelection() const
{
- return false;
+ return serverVersion >= 4;
}
bool ServerFeatures::haveSpecialChatChannels() const