summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/being.cpp2
-rw-r--r--src/gui/chat.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/being.cpp b/src/being.cpp
index dd2b2333..0ef1e15f 100644
--- a/src/being.cpp
+++ b/src/being.cpp
@@ -202,7 +202,7 @@ void Being::setHairColor(int color)
void Being::setHairStyle(int style)
{
hairStyle = style;
- if (hairStyle < 1 || hairStyle > 2)
+ if (hairStyle < 1 || hairStyle > 4)
{
hairStyle = 1;
}
diff --git a/src/gui/chat.cpp b/src/gui/chat.cpp
index 11f60466..0f298436 100644
--- a/src/gui/chat.cpp
+++ b/src/gui/chat.cpp
@@ -97,7 +97,7 @@ void ChatWindow::chat_log(std::string line, int own)
// A try to get text sentences no too long...
bool finished = false;
- unsigned int maxLength = 80;
+ unsigned int maxLength = 98;
while (!finished)
{