diff options
-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; } |