Skip to content

Commit 8d3d868

Browse files
committed
cleanup
1 parent f3178d8 commit 8d3d868

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

server/src/content/custom_phase_actions.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,7 @@ pub fn start_siegecraft_phase(game: &mut Game, c: Combat) -> bool {
159159
.get_any_city(c.defender_position)
160160
.is_some_and(|c| c.pieces.fortress.is_some())
161161
&& player.has_advance(SIEGECRAFT)
162-
// todo use payment model
163-
&& (r.can_afford(&ResourcePile::wood(2)) || r.can_afford(&ResourcePile::ore(2)))
162+
&& (SIEGECRAFT_EXTRA_DIE.can_afford(r) || SIEGECRAFT_IGNORE_HIT.can_afford(r))
164163
{
165164
game.state = GameState::CustomPhase(CustomPhaseState::SiegecraftPayment(c));
166165
true

0 commit comments

Comments
 (0)