diff options
author | markzd <markzd@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2013-01-05 04:45:53 +0000 |
---|---|---|
committer | markzd <markzd@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2013-01-05 04:45:53 +0000 |
commit | 59029a6c7a0365521aa80519081fdfc7d958cca0 (patch) | |
tree | e096f8d20d0bbb2bcae2fa93de15d5cf4da8196a /src/map/map.h | |
parent | 39b04a578b2a74f9e48b0eb2583c249f98c9404d (diff) | |
download | hercules-59029a6c7a0365521aa80519081fdfc7d958cca0.tar.gz hercules-59029a6c7a0365521aa80519081fdfc7d958cca0.tar.bz2 hercules-59029a6c7a0365521aa80519081fdfc7d958cca0.tar.xz hercules-59029a6c7a0365521aa80519081fdfc7d958cca0.zip |
* Follow up r17065
1. Removed some unnecessary checks.(bugreport:7078)
2. Fixed some index's which would access an invalid array position, crashing the server.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17077 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/map.h b/src/map/map.h index 9d48dd445..86d936972 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -32,7 +32,7 @@ enum E_MAPSERVER_ST #define AREA_SIZE battle_config.area_size #define DAMAGELOG_SIZE 30 #define LOOTITEM_SIZE 10 -#define MAX_MOBSKILL 50 +#define MAX_MOBSKILL 50 //Max 128, see mob skill_idx type if need this higher #define MAX_MOB_LIST_PER_MAP 128 #define MAX_EVENTQUEUE 2 #define MAX_EVENTTIMER 32 |