diff options
Diffstat (limited to 'npc/commands/kami.txt')
-rw-r--r-- | npc/commands/kami.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/commands/kami.txt b/npc/commands/kami.txt index 4204ae5fe..c07190796 100644 --- a/npc/commands/kami.txt +++ b/npc/commands/kami.txt @@ -15,7 +15,10 @@ end; OnCall: - .@request$ = strcharinfo(0)+": "+.@atcmd_parameters$[0]; + .@request$ = strcharinfo(0)+": "; + for (.@i = 0; .@i < .@atcmd_numparameters; ++.@i) { + .@request$ += (.@i > 0 ? " " : "") + .@atcmd_parameters$[.@i]; + } channelmes("#world", .@request$); announce l(.@request$), bc_all|bc_npc; end; |