diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-02-24 20:48:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-02-24 20:48:30 -0300 |
commit | 8909eb9b54f38e6b9b8e456245b57854e04bc33e (patch) | |
tree | 1b08612f51738456b48b11c2958bb5fb050cc0c0 | |
parent | 3513a699ef9f3ec35c72f6fef55f77753cf700bb (diff) | |
download | serverdata-8909eb9b54f38e6b9b8e456245b57854e04bc33e.tar.gz serverdata-8909eb9b54f38e6b9b8e456245b57854e04bc33e.tar.bz2 serverdata-8909eb9b54f38e6b9b8e456245b57854e04bc33e.tar.xz serverdata-8909eb9b54f38e6b9b8e456245b57854e04bc33e.zip |
Fix typo at kamibroadcast function
-rw-r--r-- | npc/commands/kami.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/commands/kami.txt b/npc/commands/kami.txt index 93ba4d7a4..0e9b567c8 100644 --- a/npc/commands/kami.txt +++ b/npc/commands/kami.txt @@ -106,7 +106,7 @@ function script kamibroadcast { if (.@snd$ == "") announce .@msg$, bc_all|bc_npc; else - announce .@snd$+": "+.@msg$, bc_all|bc_npc; + announce .@snd$+" : "+.@msg$, bc_all|bc_npc; return; } |