diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-12-08 09:07:51 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-12-09 21:20:55 +0000 |
commit | 2e900a20b88d9bbdd8f8c2961c5004eb303854f6 (patch) | |
tree | 0a8bbef8130ed1a1b0cf68ba18dc316c53e317cc | |
parent | e0e991c65d867a481baf488a8ac2b2388f5321ed (diff) | |
download | evol-hercules-2e900a20b88d9bbdd8f8c2961c5004eb303854f6.tar.gz evol-hercules-2e900a20b88d9bbdd8f8c2961c5004eb303854f6.tar.bz2 evol-hercules-2e900a20b88d9bbdd8f8c2961c5004eb303854f6.tar.xz evol-hercules-2e900a20b88d9bbdd8f8c2961c5004eb303854f6.zip |
Deprecate lg() command.
-rw-r--r-- | src/emap/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emap/init.c b/src/emap/init.c index 5069ffe..0d1efa5 100644 --- a/src/emap/init.c +++ b/src/emap/init.c @@ -130,7 +130,7 @@ HPExport void plugin_init (void) addScriptCommand("getitemlink", "v*", getItemLink); addScriptCommand("getinvindexlink", "i", getInvIndexLink); addScriptCommand("l", "s*", l); - addScriptCommand("lg", "s*", lg); + addScriptCommandDeprecated("lg", "s*", lg); addScriptCommand("requestlang", "", requestLang); addScriptCommand("requestitem", "", requestItem); addScriptCommand("requestitems", "*", requestItems); |