summaryrefslogtreecommitdiff
path: root/npc/commands/wgm.txt
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-06-02 22:04:52 -0300
committerJesusaves <cpntb1@ymail.com>2018-06-02 22:04:52 -0300
commitd584b0430abbaeb743203fd753e457bb1034dc06 (patch)
tree22ab46bfadbf118ea0a8380ed22cb577b4b94b4c /npc/commands/wgm.txt
parent87e1fd8b0b76cadbabd4cbcfe52a3b17c3f99978 (diff)
downloadserverdata-d584b0430abbaeb743203fd753e457bb1034dc06.tar.gz
serverdata-d584b0430abbaeb743203fd753e457bb1034dc06.tar.bz2
serverdata-d584b0430abbaeb743203fd753e457bb1034dc06.tar.xz
serverdata-d584b0430abbaeb743203fd753e457bb1034dc06.zip
Maybe this fix my split problem
Diffstat (limited to 'npc/commands/wgm.txt')
-rw-r--r--npc/commands/wgm.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/commands/wgm.txt b/npc/commands/wgm.txt
index dbb46eca4..d24841546 100644
--- a/npc/commands/wgm.txt
+++ b/npc/commands/wgm.txt
@@ -13,7 +13,10 @@
end;
OnCall:
- .@request$ = .@atcmd_parameters$;
+ .@request$ = strcharinfo(0)+": ";
+ for (.@i = 0; .@i < .@atcmd_numparameters; ++.@i) {
+ .@request$ += (.@i > 0 ? " " : "") + .@atcmd_parameters$[.@i];
+ }
atcommand("@request "+.@request$);
end;