Pastebin

New pastes are no longer accepted · Stats

Latest Pastes

PlayerCommand Handle Block

	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);
	}