aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ch/epfl/xblast/server/Block.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ch/epfl/xblast/server/Block.java b/src/ch/epfl/xblast/server/Block.java
index 5a139ff..6076297 100644
--- a/src/ch/epfl/xblast/server/Block.java
+++ b/src/ch/epfl/xblast/server/Block.java
@@ -74,7 +74,7 @@ public enum Block {
74 * @return T(this block can host a player) 74 * @return T(this block can host a player)
75 */ 75 */
76 public boolean canHostPlayer() { 76 public boolean canHostPlayer() {
77 return this.isFree(); 77 return this.isFree() || this.isBonus();
78 } 78 }
79 79
80 /** 80 /**