diff options
Diffstat (limited to 'npc/functions/main.txt')
-rw-r--r-- | npc/functions/main.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/functions/main.txt b/npc/functions/main.txt index 5f8c7aea..243ae383 100644 --- a/npc/functions/main.txt +++ b/npc/functions/main.txt @@ -142,7 +142,7 @@ function script npcdebug { } function script askyesno { - return select (menuaction(l("Yes")), + return select(menuaction(l("Yes")), menuaction(l("No"))); } @@ -151,7 +151,7 @@ function script askyesno { // 1 Current value // 2 Next value function script compareandsetq { - if (getq (getarg(0)) == getarg(1)) + if (getq(getarg(0)) == getarg(1)) { setq getarg(0), getarg(2); return true; |