diff options
Diffstat (limited to 'npc/commands/motd.txt')
-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") + ")"; |