summaryrefslogtreecommitdiff
path: root/npc/functions/input.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/input.txt')
-rw-r--r--npc/functions/input.txt5
1 files changed, 2 insertions, 3 deletions
diff --git a/npc/functions/input.txt b/npc/functions/input.txt
index 43b3427d7..0a510b740 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,7 +105,6 @@ function script menuint2 {
return -1;
@menuret = .@vals[@menu];
- debugmes "Final %d", @menuret;
return @menuret;
}