From 518e5b50c5e8ca277d2748f541958119e775ef50 Mon Sep 17 00:00:00 2001 From: Lance Date: Tue, 30 May 2006 07:29:10 +0000 Subject: [Fixed] - Battle mechanics in battle_check_target git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6836 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 2 ++ src/map/battle.c | 6 +++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 1d2ce15b2..b6ab82526 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2006/05/29 + * [Fixed]: + - Battle mechanics in battle_check_target [Lance] * [Fixed]: - Typo in mob_dead causing crash. Thanks to reddozen and his gang for testing. [Lance] diff --git a/src/map/battle.c b/src/map/battle.c index 0287fb8f8..1770e3df9 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -3124,11 +3124,11 @@ int battle_check_target( struct block_list *src, struct block_list *target,int f case BL_MOB: { TBL_MOB*md = (TBL_MOB*)s_bl; - if(md->state.killer) // Is on a rampage too :D - state |= BCT_ENEMY; if (!agit_flag && md->guardian_data && md->guardian_data->guild_id) return 0; //Disable guardians/emperium owned by Guilds on non-woe times. - if (!md->special_state.ai) { //Normal mobs. + if(md->state.killer) // Is on a rampage too :D + state |= BCT_ENEMY; + else if (!md->special_state.ai) { //Normal mobs. if (t_bl->type == BL_MOB && !((TBL_MOB*)t_bl)->special_state.ai) state |= BCT_PARTY; //Normal mobs with no ai are friends. else -- cgit v1.2.3-70-g09d2