public void Execute() { int low = Parent.Chips.Min(); Parent.Chips.Remove(low); Low.AddChip(low); int high = Parent.Chips.Max(); Parent.Chips.Remove(high); High.AddChip(high); if (low == 17 && high == 61) { Parent.Sim.Part1 = Parent; Parent.Sim.TryStop(); } }