diff options
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/debug-quest.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/commands/debug-quest.txt b/npc/commands/debug-quest.txt index a92a9d084..1d345091d 100644 --- a/npc/commands/debug-quest.txt +++ b/npc/commands/debug-quest.txt @@ -88,9 +88,9 @@ OnSetq: end; OnGetq: - if (.@atcmd_numparameters < 1) { - dispbottom "getq called with invalid arguments (min. 2)"; - dispbottom "Message is sent a console notice."; + if (.@atcmd_numparameters != 1) { + dispbottom "getq called with invalid arguments."; + dispbottom "Message is sent as a console notice."; dispbottom "GM Command syntax: @getq <quest_id>"; end; } |