summaryrefslogtreecommitdiff
path: root/src/map/battle.c
diff options
context:
space:
mode:
authorzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-03-13 04:03:37 +0000
committerzephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-03-13 04:03:37 +0000
commitb87d090446143bfafdc9e801f745edcb16d93767 (patch)
tree27041e48324d79829cdd290b5117cb5220a56cdc /src/map/battle.c
parent9f3181501f0d95ffcc37bcb6a816c36362d1b164 (diff)
downloadhercules-b87d090446143bfafdc9e801f745edcb16d93767.tar.gz
hercules-b87d090446143bfafdc9e801f745edcb16d93767.tar.bz2
hercules-b87d090446143bfafdc9e801f745edcb16d93767.tar.xz
hercules-b87d090446143bfafdc9e801f745edcb16d93767.zip
- Added a fix for Abracadabra, this skills allways should use minimum a Yellow Gem.
- Added some code "suggestion" to handle the new Barricades, please test it with: - @barricade <x> <y> <size> <direction> <killable> <Event Name> - @killbarricade <Event Name> - If x and y are -1, it will use your current position. - Direction 0 Vertical 1 Horizontal. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12352 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/battle.c')
-rw-r--r--src/map/battle.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/battle.c b/src/map/battle.c
index 9026ea4d4..80660510f 100644
--- a/src/map/battle.c
+++ b/src/map/battle.c
@@ -3104,6 +3104,10 @@ int battle_check_target( struct block_list *src, struct block_list *target,int f
if (!(agit_flag && map[m].flag.gvg_castle) && md->guardian_data && md->guardian_data->guild_id)
return 0; //Disable guardians/emperiums owned by Guilds on non-woe times.
+
+ if( md->class_ == MOBID_BARRICADEA && md->barricade )
+ return 0;
+
break;
}
}