summaryrefslogtreecommitdiff
path: root/src/map/status.h
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-07-10 16:00:25 +0200
committerGitHub <noreply@github.com>2016-07-10 16:00:25 +0200
commit339483ce1356e45c06dafc22a08dcac9b8c639f8 (patch)
tree50ca31c098a27a042d7f40bc8031ec479c0689ba /src/map/status.h
parent468ceee02b8c4a0468be577463ee6ef9dc60086b (diff)
parent26881acaf4aa3bcc0296d382f333bce57fda82a7 (diff)
downloadhercules-339483ce1356e45c06dafc22a08dcac9b8c639f8.tar.gz
hercules-339483ce1356e45c06dafc22a08dcac9b8c639f8.tar.bz2
hercules-339483ce1356e45c06dafc22a08dcac9b8c639f8.tar.xz
hercules-339483ce1356e45c06dafc22a08dcac9b8c639f8.zip
Merge pull request #1350 from 4144/scconf
Extend with new flag sc_config.txt
Diffstat (limited to 'src/map/status.h')
-rw-r--r--src/map/status.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/map/status.h b/src/map/status.h
index dbb507bd1..e4a326e88 100644
--- a/src/map/status.h
+++ b/src/map/status.h
@@ -74,14 +74,15 @@ enum refine_type {
* @see db/sc_config.txt for more information
**/
typedef enum sc_conf_type {
- 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_NO_REM_DEATH = 0x001,
+ SC_NO_SAVE = 0x002,
+ SC_NO_DISPELL = 0x004,
+ SC_NO_CLEARANCE = 0x008,
+ SC_BUFF = 0x010,
+ SC_DEBUFF = 0x020,
+ SC_MADO_NO_RESET = 0x040,
+ SC_NO_CLEAR = 0x080,
+ SC_VISIBLE = 0x100
} sc_conf_type;
/**