diff options
Diffstat (limited to 'src/mmo')
-rw-r--r-- | src/mmo/cxxstdio_enums.hpp | 7 | ||||
-rw-r--r-- | src/mmo/skill.t.hpp | 4 |
2 files changed, 0 insertions, 11 deletions
diff --git a/src/mmo/cxxstdio_enums.hpp b/src/mmo/cxxstdio_enums.hpp index 28a8a14..01e8842 100644 --- a/src/mmo/cxxstdio_enums.hpp +++ b/src/mmo/cxxstdio_enums.hpp @@ -64,13 +64,6 @@ auto decay_for_printf(BF v) -> typename remove_enum<decltype(v)>::type { return inline auto decay_for_printf(MapCell v) -> typename remove_enum<decltype(v)>::type { return typename remove_enum<decltype(v)>::type(v); } } // namespace map::e -namespace magic -{ -enum class SPELLARG : uint8_t; - -inline -auto decay_for_printf(SPELLARG v) -> typename remove_enum<decltype(v)>::type { return typename remove_enum<decltype(v)>::type(v); } -} // namespace map::magic enum class BL : uint8_t; enum class ByteCode : uint8_t; diff --git a/src/mmo/skill.t.hpp b/src/mmo/skill.t.hpp index 21e4059..df9c40c 100644 --- a/src/mmo/skill.t.hpp +++ b/src/mmo/skill.t.hpp @@ -41,11 +41,7 @@ enum class StatusChange : uint16_t // these ones are used by clif_status_change, // e.g. by the magic system ZERO = 0, - ATTACK_ICON_GENERIC = 2000, - ATTACK_ICON_SHEARING = 2001, - CART = 0x0c, CLIF_OPTION_SC_INVISIBILITY = 0x1000, - CLIF_OPTION_SC_SCRIBE = 0x1001, // the rest are the normal effects SC_SLOWPOISON = 14, // item script |