diff options
author | blackhole89 <blackhole89@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-07 20:39:28 +0000 |
---|---|---|
committer | blackhole89 <blackhole89@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-07 20:39:28 +0000 |
commit | 374375f69d14cbf98935b2e4a93c8e8413d96c2a (patch) | |
tree | 05fad18f5916615964145238603ad940bc81b356 /src | |
parent | 3731b54ee89bbbac4ed23c5eab2a7d4d45572171 (diff) | |
download | hercules-374375f69d14cbf98935b2e4a93c8e8413d96c2a.tar.gz hercules-374375f69d14cbf98935b2e4a93c8e8413d96c2a.tar.bz2 hercules-374375f69d14cbf98935b2e4a93c8e8413d96c2a.tar.xz hercules-374375f69d14cbf98935b2e4a93c8e8413d96c2a.zip |
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5496 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/map.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/map/map.h b/src/map/map.h index 14eca4ca5..00c051be4 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -270,11 +270,12 @@ enum { BL_ITEM = 0x008,
BL_SKILL = 0x010,
BL_NPC = 0x020,
- BL_CHAT = 0x040
+ BL_CHAT = 0x040,
+ BL_HOMUNCULUS = 0x080 //[blackhole89]
};
//For common mapforeach calls. Since pets cannot be affected, they aren't included here yet.
-#define BL_CHAR (BL_PC|BL_MOB)
+#define BL_CHAR (BL_PC|BL_MOB|BL_HOMUNCULUS) //[blackhole89]
#define BL_ALL 0xfff
enum { WARP, SHOP, SCRIPT, MONS };
|