private void ApplyStashToStage(IStashEntry stash, bool replace) { if (replace) { stage.Clear(); } stage.SetLobby(stash.GetLobby()); stage.Add(stash); }
private ICommandResult Clear(CommandContext arg) { stage.Clear(); return(new TextResult("The stage has been cleared.")); }