diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-19 14:31:01 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-07-19 14:31:01 +0000 |
commit | 5971c8892d819545607ea75edf79996460f71c46 (patch) | |
tree | 84e25aeee5a3fdb40466dcc29d894a8570be97e2 /src/char_sql | |
parent | 54620fe548004a87a9fdf3066a8f353061a6d8ee (diff) | |
download | hercules-5971c8892d819545607ea75edf79996460f71c46.tar.gz hercules-5971c8892d819545607ea75edf79996460f71c46.tar.bz2 hercules-5971c8892d819545607ea75edf79996460f71c46.tar.xz hercules-5971c8892d819545607ea75edf79996460f71c46.zip |
- Corrected Trim chars to block 'enter', as explained by the Ultra mage.
- When the client passes account version 0, the login server will set it to 1 now.
- Corrected the HP bar scaling when HP is above Short Max. It should display fine for any HP value now.
- Added a check when the mob's adelay is shorter than the amotion, in which case the adelay will be changed to the amotion value.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7742 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char_sql')
-rw-r--r-- | src/char_sql/char.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/char_sql/char.c b/src/char_sql/char.c index 2a3259f7d..dac4b9541 100644 --- a/src/char_sql/char.c +++ b/src/char_sql/char.c @@ -90,7 +90,7 @@ int name_ignoring_case = 0; // Allow or not identical name for characters but wi int char_name_option = 0; // Option to know which letters/symbols are authorised in the name of a character (0: all, 1: only those in char_name_letters, 2: all EXCEPT those in char_name_letters) by [Yor]
char char_name_letters[1024] = ""; // list of letters/symbols used to authorise or not a name of a character. by [Yor]
//The following are characters that are trimmed regardless because they cause confusion and problems on the servers. [Skotlex]
-#define TRIM_CHARS "\032\t\n\013 "
+#define TRIM_CHARS "\032\t\x0A\x0D "
int char_per_account = 0; //Maximum charas per account (default unlimited) [Sirius]
int log_char = 1; // loggin char or not [devil]
|