diff options
author | asuratva <asuratva@proton.me> | 2024-05-15 14:12:59 +0530 |
---|---|---|
committer | asuratva <asuratva@proton.me> | 2024-05-15 14:12:59 +0530 |
commit | 18315186bd1dee9a6386c376ea78788c017fe3fe (patch) | |
tree | bae3a1fa3fb9a12360801dbeb853fe4f2a9e431f /src/map/script-fun.cpp | |
parent | 8054dfe5c1f66cacca3d0d93a6479434d2240400 (diff) | |
download | tmwa-18315186bd1dee9a6386c376ea78788c017fe3fe.tar.gz tmwa-18315186bd1dee9a6386c376ea78788c017fe3fe.tar.bz2 tmwa-18315186bd1dee9a6386c376ea78788c017fe3fe.tar.xz tmwa-18315186bd1dee9a6386c376ea78788c017fe3fe.zip |
fix issummon function signature. Thanks @HoraK-FDF for catching the typo.
Diffstat (limited to 'src/map/script-fun.cpp')
-rw-r--r-- | src/map/script-fun.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/script-fun.cpp b/src/map/script-fun.cpp index 9346963..e85c9f7 100644 --- a/src/map/script-fun.cpp +++ b/src/map/script-fun.cpp @@ -5774,7 +5774,7 @@ BuiltinFunction builtin_functions[] = BUILTIN(shop, "s"_s, '\0'), BUILTIN(isdead, ""_s, 'i'), BUILTIN(aggravate, "i?"_s, '\0'), - BUILTIN(issummon, "i?"_s, 'i'), + BUILTIN(issummon, "i"_s, 'i'), BUILTIN(fakenpcname, "ssi"_s, '\0'), BUILTIN(puppet, "mxysi??"_s, 'i'), BUILTIN(destroy, "?"_s, '\0'), |