summaryrefslogtreecommitdiff
path: root/src/emap/script_buildins.c
diff options
context:
space:
mode:
authorgumi <mekolat@users.noreply.github.com>2017-06-05 11:24:45 -0400
committergumi <mekolat@users.noreply.github.com>2017-06-05 11:24:45 -0400
commitf49984841dc39c63e7a2befd2cef4f88f60cbade (patch)
tree3337050b4f0c136f3196022533f245e918498c15 /src/emap/script_buildins.c
parentcf484334d22f41e3cd881fdc6aedd2df306dd2e0 (diff)
downloadevol-hercules-f49984841dc39c63e7a2befd2cef4f88f60cbade.tar.gz
evol-hercules-f49984841dc39c63e7a2befd2cef4f88f60cbade.tar.bz2
evol-hercules-f49984841dc39c63e7a2befd2cef4f88f60cbade.tar.xz
evol-hercules-f49984841dc39c63e7a2befd2cef4f88f60cbade.zip
remove isstr
Diffstat (limited to 'src/emap/script_buildins.c')
-rw-r--r--src/emap/script_buildins.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/emap/script_buildins.c b/src/emap/script_buildins.c
index ae705ce..0c125c2 100644
--- a/src/emap/script_buildins.c
+++ b/src/emap/script_buildins.c
@@ -1438,21 +1438,6 @@ BUILDIN(removeCardByIndex)
return true;
}
-// return paramater type
-// 0 - int
-// 1 - string
-// 2 - other
-BUILDIN(isStr)
-{
- if (script_isinttype(st, 2))
- script_pushint(st, 0);
- else if (script_isstringtype(st, 2))
- script_pushint(st, 1);
- else
- script_pushint(st, 2);
- return true;
-}
-
BUILDIN(npcSit)
{
TBL_NPC *nd = NULL;