diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-10 15:40:48 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-10 15:40:48 +0000 |
commit | e1bf8d0f4b7ea46275817d6584c081cb84255259 (patch) | |
tree | e2149466fbad5892847bee3508e36af20f278c4a /src/char_sql | |
parent | 653257f5ec85a22f8b3f45f519b0f7ea065bca51 (diff) | |
download | hercules-e1bf8d0f4b7ea46275817d6584c081cb84255259.tar.gz hercules-e1bf8d0f4b7ea46275817d6584c081cb84255259.tar.bz2 hercules-e1bf8d0f4b7ea46275817d6584c081cb84255259.tar.xz hercules-e1bf8d0f4b7ea46275817d6584c081cb84255259.zip |
- Fixed Max Guardians max = 8 (no need to increase this value for woe 2.0 as non indexed guardians are set outside of the array).
- Hunter traps have 3500 HP, they are not removed by just one hit. (This also fix the bug you can't move traps with arrow shower).
- Some cleanups.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12549 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 888ab88be..fe5f72768 100644 --- a/src/char_sql/char.c +++ b/src/char_sql/char.c @@ -2940,7 +2940,7 @@ int parse_char(int fd) { // already authed client struct online_char_data* data = (struct online_char_data*)idb_get(online_char_db, sd->account_id); if( data == NULL || data->server == -1) //If it is not in any server, send it offline. [Skotlex] - //send -1 as char id (99 means at char select) [Kevin] + //send -1 as char id (99 means at char select) [Kevin] set_char_offline(-1,sd->account_id); if( data != NULL && data->fd == fd) data->fd = -1; |