Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -66,19 +66,21 @@ public override bool Execute(Player player, string[] args)
else
{
ChatService.SendPrivateChatMessage("Cannot start a new mission vote, please wait for current vote to expire.", player);
_fetchedMissions = null;
return false;
}
_fetchedMissions = null;
return true;

void Action()
{
Globals.DedicatedServerManagerInstance.missionRotation.OverrideNext(_fetchedMissions![idx - 1]);
_fetchedMissions = null;

}
}

public override bool Execute(string[] args)
{
throw new Exception("Requires Player object");
}
}
}