diff options
author | shennetsind <ind@henn.et> | 2015-01-18 15:30:25 -0200 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2015-01-18 15:30:25 -0200 |
commit | 83077740c7c996d198617d45a1916cd31ff38e9a (patch) | |
tree | 009875bbad6493aca18307330eae00fd0aa1bded /src/map/map.h | |
parent | 8a4d2c5f0b1257e32ba7768161a5a790d5f6a570 (diff) | |
download | hercules-83077740c7c996d198617d45a1916cd31ff38e9a.tar.gz hercules-83077740c7c996d198617d45a1916cd31ff38e9a.tar.bz2 hercules-83077740c7c996d198617d45a1916cd31ff38e9a.tar.xz hercules-83077740c7c996d198617d45a1916cd31ff38e9a.zip |
Fixed Bug Report 8438
Addresses instances crashing when running with the CELL_NOSTACK define enabled.
Caused by the define not being readily available to all areas that played with mapcell (now with it being included from map.h this no longer is the case)
http://hercules.ws/board/tracker/issue-8438-cell-nostack-and-instances-crash/
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h index f5f85f334..9721b19f3 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -5,6 +5,8 @@ #ifndef MAP_MAP_H #define MAP_MAP_H +#include "../config/core.h" + #include <stdarg.h> #include "atcommand.h" |