summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-02 21:00:45 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-02 21:00:45 +0000
commitd2dad92cd1c4f7cb560c5920421760be901cc9f7 (patch)
tree9f37bf89bcb8f5491b1d32cd8553424dcbd6d80b /src/map/status.c
parent833fa2b474c0eeca359f4f28b09cccd501066918 (diff)
downloadhercules-d2dad92cd1c4f7cb560c5920421760be901cc9f7.tar.gz
hercules-d2dad92cd1c4f7cb560c5920421760be901cc9f7.tar.bz2
hercules-d2dad92cd1c4f7cb560c5920421760be901cc9f7.tar.xz
hercules-d2dad92cd1c4f7cb560c5920421760be901cc9f7.zip
- Fixed failing to create Deadly Poison Bottles damaging 50% of your max life instead of 25%
- Added the missing status-change flags to SC_FREEZE to signal it should modify def and magic def git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8070 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/status.c b/src/map/status.c
index 5969cf7c9..7aeaa39ae 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -108,7 +108,7 @@ void initChangeTables(void) {
//These are the status-change flags for the common ailments.
StatusChangeFlagTable[SC_STONE] = SCB_DEF_ELE;
- StatusChangeFlagTable[SC_FREEZE] = SCB_DEF_ELE;
+ StatusChangeFlagTable[SC_FREEZE] = SCB_DEF_ELE|SCB_DEF|SCB_MDEF;
// StatusChangeFlagTable[SC_STUN] = SCB_NONE;
// StatusChangeFlagTable[SC_SLEEP] = SCB_NONE;
StatusChangeFlagTable[SC_POISON] = SCB_DEF2;