diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/map/status.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/map/status.c b/src/map/status.c index 841b40867..c968fd58e 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -4594,10 +4594,14 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val //Only affects demons and undead. if(status->race != RC_DEMON && !undead_flag) return 0; - break; + break; case SC_AETERNA: - if (sc->data[SC_STONE].timer != -1 || sc->data[SC_FREEZE].timer != -1) - return 0; + if (sc->data[SC_STONE].timer != -1 || sc->data[SC_FREEZE].timer != -1) + return 0; + break; + case SC_KYRIE: + if (bl->type == BL_MOB) + return 0; break; case SC_OVERTHRUST: if (sc->data[SC_MAXOVERTHRUST].timer != -1) |