diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-28 22:54:11 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-28 22:54:11 -0300 |
commit | 0da2bfc3b7277f5a3da722903ae0297eaee23c5c (patch) | |
tree | a597aac1fe6b21a4717f8061286786f7a3515e3d /npc/commands | |
parent | a51f905f90eb245050b50199916a7f397fb99ba0 (diff) | |
download | serverdata-0da2bfc3b7277f5a3da722903ae0297eaee23c5c.tar.gz serverdata-0da2bfc3b7277f5a3da722903ae0297eaee23c5c.tar.bz2 serverdata-0da2bfc3b7277f5a3da722903ae0297eaee23c5c.tar.xz serverdata-0da2bfc3b7277f5a3da722903ae0297eaee23c5c.zip |
Missing ##0 in MotD
Diffstat (limited to 'npc/commands')
-rw-r--r-- | npc/commands/motd.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/commands/motd.txt b/npc/commands/motd.txt index aad93fc5e..32ebf7723 100644 --- a/npc/commands/motd.txt +++ b/npc/commands/motd.txt @@ -92,7 +92,7 @@ function script MOTDConfig { input .@n; if ($MOTD_Messages$[.@n] != "") { clear; - mes l("line @@: "+$MOTD_Messages$[.@n], .@n); + mes l("line @@: "+"##0"+$MOTD_Messages$[.@n], .@n); next; select menuimage("actions/back", l("Modify another line")), @@ -123,7 +123,7 @@ function script MOTDConfig { mes "---"; .@size = getvariableofnpc(.size, "@motd"); for (.@i = 0; .@i < .@size; ++.@i) { - mes l("line @@: "+$MOTD_Messages$[.@i], .@i); + mes l("line @@: "+"##0"+$MOTD_Messages$[.@i], .@i); } if (.@size == 0) { mes "(" + l("no active MOTD") + ")"; |