summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2019-03-28 22:54:11 -0300
committerJesusaves <cpntb1@ymail.com>2019-03-28 22:54:11 -0300
commit0da2bfc3b7277f5a3da722903ae0297eaee23c5c (patch)
treea597aac1fe6b21a4717f8061286786f7a3515e3d
parenta51f905f90eb245050b50199916a7f397fb99ba0 (diff)
downloadserverdata-0da2bfc3b7277f5a3da722903ae0297eaee23c5c.tar.gz
serverdata-0da2bfc3b7277f5a3da722903ae0297eaee23c5c.tar.bz2
serverdata-0da2bfc3b7277f5a3da722903ae0297eaee23c5c.tar.xz
serverdata-0da2bfc3b7277f5a3da722903ae0297eaee23c5c.zip
Missing ##0 in MotD
-rw-r--r--npc/commands/motd.txt4
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") + ")";