diff options
author | Michieru <Michieru@users.noreply.github.com> | 2014-09-15 13:24:25 +0200 |
---|---|---|
committer | Michieru <Michieru@users.noreply.github.com> | 2014-09-15 13:24:25 +0200 |
commit | d7eb5284c49f6678a91afc7ef40b5fd81660c905 (patch) | |
tree | bbe1a083c359366bc3d58c683315a14bcd184d9a | |
parent | 2a8a0ff5cac74462b468f8139cc615b295479a6b (diff) | |
parent | 6fc1cc13663bdc468f106fef142188384af136b4 (diff) | |
download | hercules-d7eb5284c49f6678a91afc7ef40b5fd81660c905.tar.gz hercules-d7eb5284c49f6678a91afc7ef40b5fd81660c905.tar.bz2 hercules-d7eb5284c49f6678a91afc7ef40b5fd81660c905.tar.xz hercules-d7eb5284c49f6678a91afc7ef40b5fd81660c905.zip |
Merge pull request #354 from csnv/unitcleanup
Fixes error initializing SC_WARMER
-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 188b952ef..323a01c56 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -677,6 +677,7 @@ void initChangeTables(void) { set_sc_with_vfx( SO_DIAMONDDUST , SC_COLD , SI_COLD , SCB_NONE ); // it does show the snow icon on mobs but doesn't affect it. set_sc( SO_CLOUD_KILL , SC_POISON , SI_CLOUDKILL , SCB_NONE ); set_sc( SO_STRIKING , SC_STRIKING , SI_STRIKING , SCB_WATK|SCB_CRI ); + add_sc( SO_WARMER , SC_WARMER ); // At the moment, no icon on officials set_sc( SO_VACUUM_EXTREME , SC_VACUUM_EXTREME , SI_VACUUM_EXTREME , SCB_NONE ); set_sc( SO_ARRULLO , SC_DEEP_SLEEP , SI_DEEPSLEEP , SCB_NONE ); set_sc( SO_FIRE_INSIGNIA , SC_FIRE_INSIGNIA , SI_FIRE_INSIGNIA , SCB_MATK | SCB_BATK | SCB_WATK | SCB_ATK_ELE | SCB_REGEN ); |