summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-03 17:17:45 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-03 17:17:45 +0000
commit3c79da4ecd74527c85d7efed818ac02692263975 (patch)
treedc3497e3ec9159d0adf42a0acaf67f3c1742dd71 /src/map/status.c
parent221bb965d8cd319d244832871de27adc60f3bc2f (diff)
downloadhercules-3c79da4ecd74527c85d7efed818ac02692263975.tar.gz
hercules-3c79da4ecd74527c85d7efed818ac02692263975.tar.bz2
hercules-3c79da4ecd74527c85d7efed818ac02692263975.tar.xz
hercules-3c79da4ecd74527c85d7efed818ac02692263975.zip
- Grand Cross/Grand Darkness can no longer get the ignore defense -armor piercing bonuses.
- Loki's weil is now ignored by bosses. - Land Protector and Gantantein should now ignore traps. - Fixed Shinobi card so that it fails when you aren't next to a wall. - Cleaned up the function skill_landprotector. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5174 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c
index 7729ee152..2d749236f 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -681,7 +681,7 @@ int status_check_skilluse(struct block_list *src, struct block_list *target, int
if (skill_num)
{ //Skills blocked through status changes...
if ((sc->data[SC_VOLCANO].timer != -1 && skill_num == WZ_ICEWALL) ||
- (sc->data[SC_ROKISWEIL].timer != -1 && skill_num != BD_ADAPTATION) ||
+ (sc->data[SC_ROKISWEIL].timer != -1 && skill_num != BD_ADAPTATION && !(mode&MD_BOSS)) ||
(sc->data[SC_MARIONETTE].timer != -1 && skill_num != CG_MARIONETTE) ||
(sc->data[SC_MARIONETTE2].timer != -1 && skill_num == CG_MARIONETTE) ||
(sc->data[SC_HERMODE].timer != -1 && skill_get_inf(skill_num) & INF_SUPPORT_SKILL) ||