diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-25 13:19:02 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-11-25 13:19:02 +0000 |
commit | aeb849d092e07c36fcc158bf2f8a8552ca5cd58e (patch) | |
tree | aeaf548a53f3c573ff12ced2b41f35ed91d97eb8 /src/map | |
parent | ddcceef5e3e484c16ef29cc756aa5784ad3ee9cf (diff) | |
download | hercules-aeb849d092e07c36fcc158bf2f8a8552ca5cd58e.tar.gz hercules-aeb849d092e07c36fcc158bf2f8a8552ca5cd58e.tar.bz2 hercules-aeb849d092e07c36fcc158bf2f8a8552ca5cd58e.tar.xz hercules-aeb849d092e07c36fcc158bf2f8a8552ca5cd58e.zip |
- Fixed missing line in status.c which explains why NPC_DEFENDER wasn't quite working yet.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9317 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/status.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/map/status.c b/src/map/status.c index 998a9b5eb..0228ec367 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -216,6 +216,7 @@ void initChangeTables(void) { set_sc(NPC_KEEPING, SC_KEEPING, SI_BLANK, SCB_DEF);
add_sc(NPC_DARKBLESSING, SC_COMA);
set_sc(NPC_BARRIER, SC_BARRIER, SI_BLANK, SCB_MDEF|SCB_DEF);
+ add_sc(NPC_DEFENDER, SC_ARMOR);
add_sc(NPC_LICK, SC_STUN);
set_sc(NPC_HALLUCINATION, SC_HALLUCINATION, SI_HALLUCINATION, SCB_NONE);
add_sc(NPC_REBIRTH, SC_KAIZEL);
|