diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ch/epfl/xblast/server/GameState.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ch/epfl/xblast/server/GameState.java b/src/ch/epfl/xblast/server/GameState.java index 19b16a9..7c56153 100644 --- a/src/ch/epfl/xblast/server/GameState.java +++ b/src/ch/epfl/xblast/server/GameState.java | |||
@@ -377,7 +377,7 @@ public final class GameState { | |||
377 | */ | 377 | */ |
378 | private static List<Bomb> explodingBombs(List<Bomb> bombs, Set<Cell> blastedCells) { | 378 | private static List<Bomb> explodingBombs(List<Bomb> bombs, Set<Cell> blastedCells) { |
379 | return bombs.stream() | 379 | return bombs.stream() |
380 | .filter(b -> blastedCells.contains(b.position()) || b.fuseLength() <= 1) | 380 | .filter(b -> blastedCells.contains(b.position()) || b.fuseLengths().tail().isEmpty()) |
381 | .collect(Collectors.toList()); | 381 | .collect(Collectors.toList()); |
382 | } | 382 | } |
383 | 383 | ||