Fixed crash due to renaming variable

This commit is contained in:
2021-09-29 15:04:10 -05:00
parent 7b7efabaf6
commit 0f0009bcf0
3 changed files with 13 additions and 12 deletions

View File

@@ -112,7 +112,7 @@ module TAC
start_clock(:endgame_only)
end
button "Abort Clock", width: 1.0 do
button "Abort Match", width: 1.0 do
RemoteControl.connection.puts(ClockNet::PacketHandler.packet_abort_clock)
end
@@ -260,6 +260,7 @@ module TAC
end
def randomizer_changed(boolean)
puts "Randomizer is visable? #{boolean}"
@randomizer_label.value = "Visible" if boolean
@randomizer_label.value = "Not Visible" unless boolean
end