summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Sehmisch <crush@themanaworld.org>2009-03-02 16:27:29 +0100
committerPhilipp Sehmisch <crush@themanaworld.org>2009-03-02 16:27:29 +0100
commit30a6139d35938d9e86b33e32d5e5b111a16db937 (patch)
tree3d720f964a79ecc2883318027e1e43d566a52a7d
parent5ea5371434b76fc7511db4fa5b72e34046497943 (diff)
downloadmanaserv-30a6139d35938d9e86b33e32d5e5b111a16db937.tar.gz
manaserv-30a6139d35938d9e86b33e32d5e5b111a16db937.tar.bz2
manaserv-30a6139d35938d9e86b33e32d5e5b111a16db937.tar.xz
manaserv-30a6139d35938d9e86b33e32d5e5b111a16db937.zip
Fixed default values of numHairStyles und numHairColors
-rw-r--r--src/account-server/accounthandler.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/account-server/accounthandler.cpp b/src/account-server/accounthandler.cpp
index a0369201..27d96176 100644
--- a/src/account-server/accounthandler.cpp
+++ b/src/account-server/accounthandler.cpp
@@ -494,8 +494,8 @@ static void handleCharacterCreateMessage(AccountClient &computer, MessageIn &msg
int hairStyle = msg.readByte();
int hairColor = msg.readByte();
int gender = msg.readByte();
- int numHairStyles = Configuration::getValue("char_numHairStyles", 15);
- int numHairColors = Configuration::getValue("char_numHairColors", 9);
+ int numHairStyles = Configuration::getValue("char_numHairStyles", 17);
+ int numHairColors = Configuration::getValue("char_numHairColors", 11);
int numGenders = Configuration::getValue("char_numGenders", 2);
unsigned minNameLength = Configuration::getValue("char_minNameLength", 4);
unsigned maxNameLength = Configuration::getValue("char_maxNameLength", 25);