diff options
author | Haru <haru@dotalux.com> | 2014-11-02 03:11:59 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2014-11-02 03:13:59 +0100 |
commit | 134a4bae206a9c14f7da86095b5555b91ace3035 (patch) | |
tree | c487cc0484cf076c294a3fa597a8d60c42205052 /src/map | |
parent | d22e937e62b3443b74051ecc47ccc3137f9ff5f5 (diff) | |
download | hercules-134a4bae206a9c14f7da86095b5555b91ace3035.tar.gz hercules-134a4bae206a9c14f7da86095b5555b91ace3035.tar.bz2 hercules-134a4bae206a9c14f7da86095b5555b91ace3035.tar.xz hercules-134a4bae206a9c14f7da86095b5555b91ace3035.zip |
Marked commands 'enablearena' and 'disablearena' as deprecated.
- Note: The commands will be completely removed after about a month.
Custom, third party scripts will require updates, in case they were
using these commands. Please see the commands documentation.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/script.c b/src/map/script.c index 6da43b87d..5e368e0ad 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -19176,8 +19176,8 @@ void script_parse_builtin(void) { BUILDIN_DEF2(waitingroomkickall,"kickwaitingroomall","?"), BUILDIN_DEF(enablewaitingroomevent,"?"), BUILDIN_DEF(disablewaitingroomevent,"?"), - BUILDIN_DEF2(enablewaitingroomevent,"enablearena",""), // Added by RoVeRT - BUILDIN_DEF2(disablewaitingroomevent,"disablearena",""), // Added by RoVeRT + BUILDIN_DEF2_DEPRECATED(enablewaitingroomevent,"enablearena",""), // Deprecated 2014-11-02 [Haru] + BUILDIN_DEF2_DEPRECATED(disablewaitingroomevent,"disablearena",""), // Deprecated 2014-11-02 [Haru] BUILDIN_DEF(getwaitingroomstate,"i?"), BUILDIN_DEF(warpwaitingpc,"sii?"), BUILDIN_DEF(attachrid,"i"), |