diff options
author | Jesusaves <cpntb1@ymail.com> | 2022-06-06 00:24:11 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2022-06-06 00:24:11 -0300 |
commit | 2e2d88f026a54a5014b10758a31e09b3f16c05e3 (patch) | |
tree | a6e60f1a374a77b4d5e0a13254124d30a648ed0c /npc/functions/input.txt | |
parent | 6da49c82ecb0dd624136b775c3314ee5a0457822 (diff) | |
download | serverdata-2e2d88f026a54a5014b10758a31e09b3f16c05e3.tar.gz serverdata-2e2d88f026a54a5014b10758a31e09b3f16c05e3.tar.bz2 serverdata-2e2d88f026a54a5014b10758a31e09b3f16c05e3.tar.xz serverdata-2e2d88f026a54a5014b10758a31e09b3f16c05e3.zip |
Hotfix?
Diffstat (limited to 'npc/functions/input.txt')
-rw-r--r-- | npc/functions/input.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/functions/input.txt b/npc/functions/input.txt index 0a510b740..43b3427d7 100644 --- a/npc/functions/input.txt +++ b/npc/functions/input.txt @@ -94,8 +94,8 @@ function script menuint2 { @menu = 255; @menuret = -1; select(.@menustr$); - //debugmes "Option %d", @menu; - //debugmes "Array size %d", getarraysize(.@vals); + debugmes "Option %d", @menu; + debugmes "Array size %d", getarraysize(.@vals); if (@menu == 255) return -1; @@ -105,6 +105,7 @@ function script menuint2 { return -1; @menuret = .@vals[@menu]; + debugmes "Final %d", @menuret; return @menuret; } |