diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-03 13:32:38 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-09-03 13:32:38 +0000 |
commit | 3d23d29e1f63a526338a35a05d384b7571f12553 (patch) | |
tree | 52a5b0a94b4fa85a3cc46dc86040eb70d4e0bdd4 /src/map/map.h | |
parent | 66201d936391f0cabdfc1e47f6ca7fd6b692820e (diff) | |
download | hercules-3d23d29e1f63a526338a35a05d384b7571f12553.tar.gz hercules-3d23d29e1f63a526338a35a05d384b7571f12553.tar.bz2 hercules-3d23d29e1f63a526338a35a05d384b7571f12553.tar.xz hercules-3d23d29e1f63a526338a35a05d384b7571f12553.zip |
- Starting Mercenary Skill implementation.
- MS_BASH Completed.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13189 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.h')
-rw-r--r-- | src/map/map.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/map/map.h b/src/map/map.h index 92011827b..4a8be92ed 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -172,11 +172,11 @@ enum bl_type { BL_MOB = 0x002, BL_PET = 0x004, BL_HOM = 0x008, - BL_ITEM = 0x010, - BL_SKILL = 0x020, - BL_NPC = 0x040, - BL_CHAT = 0x080, - BL_MER = 0x100, + BL_MER = 0x010, + BL_ITEM = 0x020, + BL_SKILL = 0x040, + BL_NPC = 0x080, + BL_CHAT = 0x100, BL_ALL = 0xFFF, }; |