소스 검색

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@5496 54d463be-8e91-2dee-dedb-b68131a5f0ec

blackhole89 19 년 전
부모
커밋
9e4fc7611b
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      src/map/map.h

+ 3 - 2
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 };