summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-08-24 23:26:14 +0000
committerzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-08-24 23:26:14 +0000
commit08d3a24b80ebb31e46d623118b335a86cf37f425 (patch)
tree2b8e049aedd4a720aafc395a30983206f3e6292e /src/map/mob.c
parent9bf4c93d86a081c0c1254613d5115e8210e035ec (diff)
downloadhercules-08d3a24b80ebb31e46d623118b335a86cf37f425.tar.gz
hercules-08d3a24b80ebb31e46d623118b335a86cf37f425.tar.bz2
hercules-08d3a24b80ebb31e46d623118b335a86cf37f425.tar.xz
hercules-08d3a24b80ebb31e46d623118b335a86cf37f425.zip
- Mercenary Dismiss packet and some corrections.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13127 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 9829ad235..43ba8afb3 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -51,7 +51,7 @@
#define MAX_MINCHASE 30 //Max minimum chase value to use for mobs.
#define RUDE_ATTACKED_COUNT 2 //After how many rude-attacks should the skill be used?
//Used to determine default enemy type of mobs (for use in eachinrange calls)
-#define DEFAULT_ENEMY_TYPE(md) (md->special_state.ai?BL_CHAR:BL_PC|BL_HOM)
+#define DEFAULT_ENEMY_TYPE(md) (md->special_state.ai?BL_CHAR:BL_PC|BL_HOM|BL_MER)
//Dynamic mob database, allows saving of memory when there's big gaps in the mob_db [Skotlex]
struct mob_db *mob_db_data[MAX_MOB_DB+1];