diff options
Diffstat (limited to 'npc/commands/motd.txt')
-rw-r--r-- | npc/commands/motd.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/commands/motd.txt b/npc/commands/motd.txt index 6a6ba6123..3867c8513 100644 --- a/npc/commands/motd.txt +++ b/npc/commands/motd.txt @@ -40,7 +40,7 @@ function script MOTDConfig { .@size = getvariableofnpc(.size, "@motd"); $MOTD_Messages$[.@size] = .@s$; set getvariableofnpc(.size, "@motd"), getarraysize($MOTD_Messages$); - logmes "MOTD modified: line added"; + logmes "MOTD modified: line added", LOGMES_ATCOMMAND; // FIXME: log to GM log } } @@ -52,7 +52,7 @@ function script MOTDConfig { deletearray $MOTD_Messages$[.@l], 1; // remove and shift mes l("Line @@ has been removed.", .@l); set getvariableofnpc(.size, "@motd"), getarraysize($MOTD_Messages$); - logmes "MOTD modified: line removed"; + logmes "MOTD modified: line removed", LOGMES_ATCOMMAND; // FIXME: log to GM log } @@ -85,7 +85,7 @@ function script MOTDConfig { if (.@s$ != "") { $MOTD_Messages$[.@l] = .@s$; - logmes "MOTD modified: line edited"; + logmes "MOTD modified: line edited", LOGMES_ATCOMMAND; // FIXME: log to GM log } } |