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 61e64f3..ece12ed 100644 --- a/src/ch/epfl/xblast/server/GameState.java +++ b/src/ch/epfl/xblast/server/GameState.java | |||
@@ -327,7 +327,7 @@ public final class GameState { | |||
327 | return true; | 327 | return true; |
328 | 328 | ||
329 | if (bombedCells1.contains(nextCentralPos.containingCell())) | 329 | if (bombedCells1.contains(nextCentralPos.containingCell())) |
330 | if (nextPos.distanceTo(nextCentralPos) <= Board.BOMB_BLOCKING_DISTANCE) | 330 | if (nextPos.distanceTo(nextCentralPos) < Board.BOMB_BLOCKING_DISTANCE) |
331 | return true; | 331 | return true; |
332 | 332 | ||
333 | return false; | 333 | return false; |