diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2026-03-16 09:21:52 +0100 |
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2026-03-16 09:21:52 +0100 |
| commit | 8c110fcb70ea0351b4c9faf39608cf4c3780dd54 (patch) | |
| tree | bb435674110730b27fc3ffcfeba382ac6a0485b9 /lib/colonial_twilight/actions/fln/agitate.rb | |
| parent | 7c914bbe1aaf7f7dbde6e612a01bb991876c217f (diff) | |
| download | colonial-twilight-8c110fcb70ea0351b4c9faf39608cf4c3780dd54.zip colonial-twilight-8c110fcb70ea0351b4c9faf39608cf4c3780dd54.tar.gz | |
GameAction : reorder constructor parameters
Diffstat (limited to 'lib/colonial_twilight/actions/fln/agitate.rb')
| -rw-r--r-- | lib/colonial_twilight/actions/fln/agitate.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/colonial_twilight/actions/fln/agitate.rb b/lib/colonial_twilight/actions/fln/agitate.rb index 8434662..b75767b 100644 --- a/lib/colonial_twilight/actions/fln/agitate.rb +++ b/lib/colonial_twilight/actions/fln/agitate.rb @@ -10,7 +10,7 @@ module ColonialTwilight class Agitate < FlnAction # 1 resources per Terror marker, then 1 resource for the level shift def initialize(space, mode) - super(space, mode, cost: (mode[:remove_terror] || 0) + (mode[:shift_oppose] || 0)) + super(space, mode, (mode[:remove_terror] || 0) + (mode[:shift_oppose] || 0)) end def validate! |
