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