#include "backend/command.hpp" #include "natives.hpp" #include "util/teleport.hpp" namespace big { class teleport_to_objective : command { using command::command; virtual void execute(const std::vector&, const std::shared_ptr ctx) { teleport::to_objective(); } }; teleport_to_objective g_teleport_to_objective("objectivetp", "Teleport To Objective", "Teleports you to your mission objective", 0); }