aboutsummaryrefslogtreecommitdiff
path: root/02-hub3.rb
diff options
context:
space:
mode:
authorNat Lasseter <user@4574.co.uk>2024-05-10 10:31:08 +0100
committerNat Lasseter <user@4574.co.uk>2024-05-10 10:31:08 +0100
commit42f9fdc0b88dd819a61593ed053d6b0713c59e45 (patch)
tree457cd53d93606bce249d7a0016cde68da2a98564 /02-hub3.rb
parenta24f29c0e92a70415f679bc8e2fdd4e6410e1948 (diff)
One frame at a timeHEADmain
Diffstat (limited to '02-hub3.rb')
-rw-r--r--02-hub3.rb10
1 files changed, 3 insertions, 7 deletions
diff --git a/02-hub3.rb b/02-hub3.rb
index 5379bb4..f3c6e3d 100644
--- a/02-hub3.rb
+++ b/02-hub3.rb
@@ -21,13 +21,9 @@ $levels << Level.new do
end
def generate
- frames = {}
- @interfaces.each do |iface|
- next if rand < 0.3
- frames[@count.to_s] = Frame.new(iface, @count)
- @count += 1
- end
- frames
+ frame = Frame.new(interfaces.sample, @count)
+ @count += 1
+ frame
end
def click