diff options
author | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-20 07:17:18 +0000 |
---|---|---|
committer | FlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-12-20 07:17:18 +0000 |
commit | 38daeba66b5d2a9f6fc4eda795b6c9b8c77a7b54 (patch) | |
tree | c813881903b95d5fa1d0d0d64ca4055d278e24c2 /src/map/map.h | |
parent | 7b13f57cb69e6b38aa793f135a3c673cc6e72398 (diff) | |
download | hercules-38daeba66b5d2a9f6fc4eda795b6c9b8c77a7b54.tar.gz hercules-38daeba66b5d2a9f6fc4eda795b6c9b8c77a7b54.tar.bz2 hercules-38daeba66b5d2a9f6fc4eda795b6c9b8c77a7b54.tar.xz hercules-38daeba66b5d2a9f6fc4eda795b6c9b8c77a7b54.zip |
- Changed the script source from unsigned char* to const char*.
- Updated plugins Makefile.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9532 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/map.h b/src/map/map.h index c7234dc29..f9e59cbff 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -176,7 +176,7 @@ enum { //This stackable implementation does not means a BL can be more than one type at a time, but it's //meant to make it easier to check for multiple types at a time on invocations such as // map_foreach* calls [Skotlex] -enum { +enum bl_type { BL_NUL = 0x000, BL_PC = 0x001, BL_MOB = 0x002, @@ -192,7 +192,7 @@ enum { #define BL_CHAR (BL_PC|BL_MOB|BL_HOM) #define BL_ALL 0xfff -enum { WARP, SHOP, SCRIPT, MONS }; +enum bl_subtype { WARP, SHOP, SCRIPT, MONS }; enum { RC_FORMLESS=0, @@ -1073,7 +1073,7 @@ struct map_data { int water_height; int npc_num; int users; - struct { + struct map_flag { unsigned alias : 1; unsigned nomemo : 1; unsigned noteleport : 1; |