[PX]IronFist wrote:[PX]Kal Bob wrote:Code: Select all
Here's an idea: Since the marshall is usually armed with the pistol we could add a rule that after two minutes the marshall can shoot anyone they see camping unless they get up and start hustling. Shooting back at the marshall is an instant out. Basically after two minutes the marshall becomes Judge Dredd.
I actually really like this idea lol.
I like how this is code, lol
Bob's been programming a little too much.
Code: Select all
@go_time = 2.minutes.from_now
@players.each do |player|
unless player.moving?
@marshall.shoot(player) if Time.now > @go_time
end
end
