diff options
author | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-13 11:39:13 +0000 |
---|---|---|
committer | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-13 11:39:13 +0000 |
commit | 304dbe79fc957d7fe757761a70ba0cd7a906d639 (patch) | |
tree | ad411877badbc28c6e23687aab85ba71198deb3b /src/map/pc.c | |
parent | 8605b217a7e1c6ed424a8cdf6a987502e4cd6917 (diff) | |
download | hercules-304dbe79fc957d7fe757761a70ba0cd7a906d639.tar.gz hercules-304dbe79fc957d7fe757761a70ba0cd7a906d639.tar.bz2 hercules-304dbe79fc957d7fe757761a70ba0cd7a906d639.tar.xz hercules-304dbe79fc957d7fe757761a70ba0cd7a906d639.zip |
Fixed some skills working on undead element when they were supposed to work on undead race.
Skills Fixed: GrandCross, Dark GrandCross, Cure, Head Crush, Signum Crusis, Blessing, Demons Bane, Divine Protection.
Skills needing confirmation: Magnus Exorcismus, Evil Land, Sanctuary, Status Recovery.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12820 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/pc.c')
-rw-r--r-- | src/map/pc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/pc.c b/src/map/pc.c index 643863ea6..620038d00 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -6558,7 +6558,7 @@ int pc_unequipitem(struct map_session_data *sd,int n,int flag) status_calc_pc(sd,0); } - if(sd->sc.data[SC_SIGNUMCRUCIS] && !battle_check_undead(sd->battle_status.race,sd->battle_status.def_ele)) + if(sd->sc.data[SC_SIGNUMCRUCIS] && (sd->battle_status.race != RC_UNDEAD)) status_change_end(&sd->bl,SC_SIGNUMCRUCIS,-1); //OnUnEquip script [Skotlex] |