summaryrefslogtreecommitdiff
path: root/src/map/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/map.h')
-rw-r--r--src/map/map.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/map/map.h b/src/map/map.h
index 5a7fed46e..bb4b0a94c 100644
--- a/src/map/map.h
+++ b/src/map/map.h
@@ -176,6 +176,7 @@ enum bl_type {
BL_SKILL = 0x020,
BL_NPC = 0x040,
BL_CHAT = 0x080,
+ BL_MER = 0x100,
BL_ALL = 0xFFF,
};
@@ -631,6 +632,7 @@ typedef struct chat_data TBL_CHAT;
typedef struct skill_unit TBL_SKILL;
typedef struct pet_data TBL_PET;
typedef struct homun_data TBL_HOM;
+typedef struct mercenary_data TBL_MER;
#define BL_CAST(type_, bl) \
( ((bl) == (struct block_list*)NULL || (bl)->type != (type_)) ? (T ## type_ *)NULL : (T ## type_ *)(bl) )