public void raid_delete(Context ctx) { //Get the next raid var handle = RaidManager.GetNextRaid(); //Check if we have one Precondition.Assert(handle.HasValue, "No raids up."); //Pass on this.raid_delete(ctx, (uint)handle.Value.raid_id); }
public void raid_make_comp(Context ctx, [RegexParameter(@"[\S\s]+")] string name) { //Get the next raid var handle = RaidManager.GetNextRaid(); //Check if we have one Precondition.Assert(handle.HasValue, "No raids up."); //Pass on this.raid_make_comp(ctx, name, (uint)handle.Value.raid_id); }