summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
authorshadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-06-13 13:22:36 +0000
committershadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec>2008-06-13 13:22:36 +0000
commitb978d7ec43d2f167a7395c2c19cc2e86bf5e4b6a (patch)
tree82b3193172c8630b1ea1a8f904e558bd232a8597 /src/map/status.c
parent304dbe79fc957d7fe757761a70ba0cd7a906d639 (diff)
downloadhercules-b978d7ec43d2f167a7395c2c19cc2e86bf5e4b6a.tar.gz
hercules-b978d7ec43d2f167a7395c2c19cc2e86bf5e4b6a.tar.bz2
hercules-b978d7ec43d2f167a7395c2c19cc2e86bf5e4b6a.tar.xz
hercules-b978d7ec43d2f167a7395c2c19cc2e86bf5e4b6a.zip
Fixed Grandcross and darkgrandcross, should only cause blind against undead race.
Also confirmed that ME, evil land, sanctuary, grandcross/DGC and status recovery are versus element, not race. Removed confusion effect part from AL_CURE, it doesnt work on official anymore. Partial revert of signum crucis modification, it doesnt work against players, but work on ELEMENT undead monsters. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12821 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c
index b92373a95..0eee43ed7 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -4672,8 +4672,8 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val
return 0; //Cannot override other opt1 status changes. [Skotlex]
break;
case SC_SIGNUMCRUCIS:
- //Only affects demons and undead races
- if(status->race!=RC_UNDEAD && status->race!=RC_DEMON)
+ //Only affects demons and undead element (but not players)
+ if((!undead_flag && status->race!=RC_DEMON) || bl->type == BL_PC)
return 0;
break;
case SC_AETERNA: