diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/commands/motd.txt | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/npc/commands/motd.txt b/npc/commands/motd.txt index ae12a010..5813b53c 100644 --- a/npc/commands/motd.txt +++ b/npc/commands/motd.txt @@ -2,12 +2,6 @@ function script displayMOTD { .@size = getvariableofnpc(.size, "@motd"); .@dsize = getvariableofnpc(.dsize, "@motd"); - // generic MOTD - for (.@i = 0; .@i < .@size; ++.@i) - { - dispbottom $MOTD_Messages$[.@i]; - } - // git stuff and such if (debug) { @@ -15,7 +9,15 @@ function script displayMOTD { { dispbottom $Debug_Messages$[.@i]; // FIXME: send this to the Debug tab instead } + dispbottom "---"; } + + // generic MOTD + for (.@i = 0; .@i < .@size; ++.@i) + { + dispbottom $MOTD_Messages$[.@i]; + } + return; } |