diff --git a/zone/gm_commands/set.cpp b/zone/gm_commands/set.cpp index a7dbb99bb..8626db5cc 100644 --- a/zone/gm_commands/set.cpp +++ b/zone/gm_commands/set.cpp @@ -33,6 +33,7 @@ #include "set/loginserver_info.cpp" #include "set/mana.cpp" #include "set/mana_full.cpp" +#include "set/motd.cpp" #include "set/name.cpp" #include "set/ooc_mute.cpp" #include "set/password.cpp" @@ -98,6 +99,7 @@ void command_set(Client *c, const Seperator *sep) Cmd{.cmd = "loginserver_info", .u = "loginserver_info [Email] [Password]", .fn = SetLoginserverInfo, .a = {"#setlsinfo"}}, Cmd{.cmd = "mana", .u = "mana [Amount]", .fn = SetMana, .a = {"#setmana"}}, Cmd{.cmd = "mana_full", .u = "mana_full", .fn = SetManaFull, .a = {"#mana"}}, + Cmd{.cmd = "motd", .u = "motd", .fn = SetMOTD, .a = {"#motd"}}, Cmd{.cmd = "name", .u = "name", .fn = SetName, .a = {"#name"}}, Cmd{.cmd = "ooc_mute", .u = "ooc_mute", .fn = SetOOCMute, .a = {"#oocmute"}}, Cmd{.cmd = "password", .u = "password [Account Name] [Password] (account table password)", .fn = SetPassword, .a = {"#setpass"}}, diff --git a/zone/gm_commands/set/motd.cpp b/zone/gm_commands/set/motd.cpp index f22cad89b..51ec7ca98 100755 --- a/zone/gm_commands/set/motd.cpp +++ b/zone/gm_commands/set/motd.cpp @@ -3,7 +3,7 @@ extern WorldServer worldserver; -void command_motd(Client *c, const Seperator *sep) +void SetMOTD(Client *c, const Seperator *sep) { const auto arguments = sep->argnum; if (arguments < 2) {