summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-09-29 21:04:22 -0300
committerJesusaves <cpntb1@ymail.com>2021-09-29 21:04:22 -0300
commit55679a7f63f72680142a52dfa574916c6139840d (patch)
tree25f739503d86da6b7eb2527f1d23b04c00b6fda0
parent2d5859cc9ba7a2be96ceb6e5add7c8d0f5f7a503 (diff)
downloadserverdata-55679a7f63f72680142a52dfa574916c6139840d.tar.gz
serverdata-55679a7f63f72680142a52dfa574916c6139840d.tar.bz2
serverdata-55679a7f63f72680142a52dfa574916c6139840d.tar.xz
serverdata-55679a7f63f72680142a52dfa574916c6139840d.zip
Improve a tiny bit the internals of @getq
-rw-r--r--npc/commands/debug-quest.txt6
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;
}