diff options
author | AnnieRuru <jeankof@ymail.com> | 2018-05-04 17:34:29 +0800 |
---|---|---|
committer | AnnieRuru <jeankof@ymail.com> | 2018-05-04 17:34:29 +0800 |
commit | d6785d389cbee4f34078f6762626ca61b2d6cc25 (patch) | |
tree | d62ccaa345434b5147af78a1cc60f913e3a69a11 | |
parent | 0622261073b6f4f0160cb0df150d3e07483d9b1b (diff) | |
download | hercules-d6785d389cbee4f34078f6762626ca61b2d6cc25.tar.gz hercules-d6785d389cbee4f34078f6762626ca61b2d6cc25.tar.bz2 hercules-d6785d389cbee4f34078f6762626ca61b2d6cc25.tar.xz hercules-d6785d389cbee4f34078f6762626ca61b2d6cc25.zip |
Quick Fix *getunitdata
- this script command always return false; even it is on true condition
-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 8e6ad5dcf..93c39f2bc 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -19674,7 +19674,7 @@ BUILDIN(getunitdata) #undef getunitdata_sub - return false; + return true; } /** |