diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-05-03 04:31:43 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-05-03 04:31:43 +0300 |
commit | ed8fac40e2d6cbf11b9a4a1a8182cd28871e3e6d (patch) | |
tree | 7a427efc592715efdf74b377137650b12ccc161e /src/map/map.h | |
parent | 4cf07e2dd8ead6470d15e254fdb0784329b4e131 (diff) | |
download | hercules-ed8fac40e2d6cbf11b9a4a1a8182cd28871e3e6d.tar.gz hercules-ed8fac40e2d6cbf11b9a4a1a8182cd28871e3e6d.tar.bz2 hercules-ed8fac40e2d6cbf11b9a4a1a8182cd28871e3e6d.tar.xz hercules-ed8fac40e2d6cbf11b9a4a1a8182cd28871e3e6d.zip |
Fix overflow in map zones.
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 d6afdc160..0618b0da8 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -740,7 +740,7 @@ enum map_zone_merge_type { #define MAP_ZONE_BG_NAME "Battlegrounds" #define MAP_ZONE_CVC_NAME "CvC" #define MAP_ZONE_PK_NAME "PK Mode" -#define MAP_ZONE_MAPFLAG_LENGTH 50 +#define MAP_ZONE_MAPFLAG_LENGTH 65 struct map_zone_data { char name[MAP_ZONE_NAME_LENGTH];/* 20'd */ |