summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/map/status.c b/src/map/status.c
index a08595952..f940e8add 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -4608,20 +4608,6 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val
if (sc->opt1)
return 0; //Cannot override other opt1 status changes. [Skotlex]
break;
- case SC_CURSE:
- //Dark Elementals are inmune to curse.
- if (status->def_ele == ELE_DARK && !(flag&1))
- return 0;
- break;
- case SC_CHANGEUNDEAD: //Undead/Dark are inmune to it.
- if ((status->def_ele == ELE_DARK || undead_flag) && !(flag&1))
- return 0;
- break;
- case SC_COMA:
- //Dark elementals and Demons are inmune to coma.
- if((status->def_ele == ELE_DARK || status->race == RC_DEMON) && !(flag&1))
- return 0;
- break;
case SC_SIGNUMCRUCIS:
//Only affects demons and undead.
if(status->race != RC_DEMON && !undead_flag)