mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-16 13:58:22 +00:00
[GM Commands] Split GM Commands Into Separate Files (#1766)
* Split GM commands into their own files * Code cleanup
This commit is contained in:
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#include "../client.h"
|
||||
|
||||
void command_version(Client *c, const Seperator *sep)
|
||||
{
|
||||
c->Message(Chat::White, "Current version information.");
|
||||
c->Message(Chat::White, " %s", CURRENT_VERSION);
|
||||
c->Message(Chat::White, " Compiled on: %s at %s", COMPILE_DATE, COMPILE_TIME);
|
||||
c->Message(Chat::White, " Last modified on: %s", LAST_MODIFIED);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user