diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-11-17 10:39:00 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-11-17 10:39:00 -0300 |
commit | 5639f1abf0a3280b504de96800de37fe7a562912 (patch) | |
tree | a5bdfc589bc5ced5d6b78ab15bcac8be515e11fc /src/map/script-fun.cpp | |
parent | 1c3b142131b4a3f987ed8667d9e72ad1dda09065 (diff) | |
download | tmwa-2022.11.19.tar.gz tmwa-2022.11.19.tar.bz2 tmwa-2022.11.19.tar.xz tmwa-2022.11.19.zip |
Keep getusers(0) disabledv2022.11.19
Diffstat (limited to 'src/map/script-fun.cpp')
-rw-r--r-- | src/map/script-fun.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/script-fun.cpp b/src/map/script-fun.cpp index 58646bc..61b3eb7 100644 --- a/src/map/script-fun.cpp +++ b/src/map/script-fun.cpp @@ -3578,7 +3578,9 @@ void builtin_getusers(ScriptState *st) switch (flag & 0x07) { case 0: - val = bl->bl_m->users; + // FIXME: SIGSEGV error + //val = bl->bl_m->users; + PRINTF("Sorry, but getusers(0) is disabled. Please use getmapusers() instead.\n"_fmt); break; case 1: val = map_getusers(); |