diff options
author | gumi <mekolat@users.noreply.github.com> | 2017-05-27 13:03:11 -0400 |
---|---|---|
committer | gumi <mekolat@users.noreply.github.com> | 2017-05-28 11:50:23 -0400 |
commit | 919a95860a57a19903dc900900477062a8be193e (patch) | |
tree | e72d49f72988a29bff0f90594bc7bc04ce8446b5 /src/map | |
parent | 43a4bcac64d0aeb908d7bc91218e73f55ee00a6e (diff) | |
download | hercules-919a95860a57a19903dc900900477062a8be193e.tar.gz hercules-919a95860a57a19903dc900900477062a8be193e.tar.bz2 hercules-919a95860a57a19903dc900900477062a8be193e.tar.xz hercules-919a95860a57a19903dc900900477062a8be193e.zip |
flag the pow() buildin as deprecated
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/script.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script.c b/src/map/script.c index 364509096..b2a707bb0 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -23565,7 +23565,7 @@ void script_parse_builtin(void) { // List of mathematics commands ---> BUILDIN_DEF(log10,"i"), BUILDIN_DEF(sqrt,"i"), //[zBuffer] - BUILDIN_DEF(pow,"ii"), //[zBuffer] + BUILDIN_DEF_DEPRECATED(pow,"ii"), //[zBuffer] BUILDIN_DEF(distance,"iiii"), //[zBuffer] // <--- List of mathematics commands BUILDIN_DEF(min, "i*"), |