#include "../client.h"
void command_version(Client *c, const Seperator *sep)
{
std::string popup_text = "
";
popup_text += fmt::format("| Version | {} |
", CURRENT_VERSION);
popup_text += fmt::format("| Compiled | {} {} |
", COMPILE_DATE, COMPILE_TIME);
popup_text += fmt::format("| Last Modified | {} |
", LAST_MODIFIED);
popup_text += "
";
c->SendPopupToClient(
"Server Version Information",
popup_text.c_str()
);
}