blob: f1631aded7f6d76b8a2f741c807c73332c75405c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# frozen_string_literal: true
module ColonialTwilight
module FLNBotMarch
def march
return false if event_playable? && event_more_effective_than_terror?
# FIXME
end
end
end
|