summaryrefslogtreecommitdiff
path: root/src/map/status.h
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-11-06 20:28:45 -0200
committershennetsind <ind@henn.et>2013-11-06 20:28:45 -0200
commit665f1306a130d4b8c359972bf4e58ef9d3bd9cd8 (patch)
treede3f9d41fc8a9330675a412791b1151e34cadaf8 /src/map/status.h
parent6dcc3873037631aac15f6a87337c49e18b4cd075 (diff)
downloadhercules-665f1306a130d4b8c359972bf4e58ef9d3bd9cd8.tar.gz
hercules-665f1306a130d4b8c359972bf4e58ef9d3bd9cd8.tar.bz2
hercules-665f1306a130d4b8c359972bf4e58ef9d3bd9cd8.tar.xz
hercules-665f1306a130d4b8c359972bf4e58ef9d3bd9cd8.zip
Fixed Bug 7799
SC_MOONSTAR, SC_SUPER_STAR are no longer removeable by sc_end all, and sc clear. Modified sc_config.txt, added a new flag (0x80/128) for such cases. http://hercules.ws/board/tracker/issue-7799-sc-moonstar/ Special Thanks to kyeme. Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'src/map/status.h')
-rw-r--r--src/map/status.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/map/status.h b/src/map/status.h
index e588fbb3f..784c8ca5f 100644
--- a/src/map/status.h
+++ b/src/map/status.h
@@ -34,13 +34,14 @@ enum refine_type {
};
typedef enum sc_conf_type {
- SC_NO_REM_DEATH = 0x1,
- SC_NO_SAVE = 0x2,
- SC_NO_DISPELL = 0x4,
- SC_NO_CLEARANCE = 0x8,
- SC_BUFF = 0x10,
- SC_DEBUFF = 0x20,
- SC_MADO_NO_RESET = 0x40
+ SC_NO_REM_DEATH = 0x01,
+ SC_NO_SAVE = 0x02,
+ SC_NO_DISPELL = 0x04,
+ SC_NO_CLEARANCE = 0x08,
+ SC_BUFF = 0x10,
+ SC_DEBUFF = 0x20,
+ SC_MADO_NO_RESET = 0x40,
+ SC_NO_CLEAR = 0x80,
} sc_conf_type;
// Status changes listing. These code are for use by the server.