diff options
-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 7d921ee..2fbea45 100644 --- a/src/ch/epfl/xblast/server/GameState.java +++ b/src/ch/epfl/xblast/server/GameState.java | |||
@@ -334,7 +334,7 @@ public final class GameState { | |||
334 | return true; | 334 | return true; |
335 | 335 | ||
336 | if (bombedCells1.contains(nextCentralPos.containingCell())) | 336 | if (bombedCells1.contains(nextCentralPos.containingCell())) |
337 | if (nextPos.distanceTo(nextCentralPos) <= Board.BOMB_BLOCKING_DISTANCE + 1) | 337 | if (nextPos.distanceTo(nextCentralPos) <= Board.BOMB_BLOCKING_DISTANCE) |
338 | return true; | 338 | return true; |
339 | 339 | ||
340 | return false; | 340 | return false; |