else if (message[0] == '#') { std::string command; std::vector<std::string> arguments = util::explode(' ', message); command = arguments.front().substr(1); arguments.erase(arguments.begin()); character->world->PlayerCommand(command, arguments, character); }