summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-06 21:49:00 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2007-02-06 21:49:00 +0000
commitd32e2b4c2c8f40f9acd6b88a45729010d758b118 (patch)
treeb0040b116d347c6ab1ca876ca9cf4e75f30baf9b /src/map/map.h
parent0f79342a3fe4ce80a37f6792d4154fa97c8560b0 (diff)
downloadhercules-d32e2b4c2c8f40f9acd6b88a45729010d758b118.tar.gz
hercules-d32e2b4c2c8f40f9acd6b88a45729010d758b118.tar.bz2
hercules-d32e2b4c2c8f40f9acd6b88a45729010d758b118.tar.xz
hercules-d32e2b4c2c8f40f9acd6b88a45729010d758b118.zip
- Moved define CHAT_SIZE to clif.c, added define CHATBOX_SIZE to specify that 70 char limit of the input area.
- Fixed #lvup having the gm level check backwards. - Fixed the stormgust freeze counter going up even if the attack is blocked/cancelled. - Updated mes_len_check to receive max expected size as well (clif.c) - Cleaned up parsing functions for /mm, /resetskill, /resetstate, /item, /monster, /hide - git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9811 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/map.h b/src/map/map.h
index a547af985..b227ed4f3 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -159,11 +159,11 @@ enum {
MAPID_BABY_SOUL_LINKER,
};
-//Talk max size: <name> : <message of 70> [Skotlex]
-#define CHAT_SIZE (NAME_LENGTH + 3 + 70)
//Max size when inputting a string with those 'npc input boxes'
//(also used for Graffiti, Talkie Box, Vending, and Chatrooms)
#define MESSAGE_SIZE 80
+//String length you can write in the 'talking box'
+#define CHATBOX_SIZE 70
#define DEFAULT_AUTOSAVE_INTERVAL 5*60*1000