aboutsummaryrefslogtreecommitdiff
path: root/src/ch/epfl
diff options
context:
space:
mode:
authorPacien TRAN-GIRARD2016-02-29 15:36:04 +0100
committerPacien TRAN-GIRARD2016-02-29 15:36:04 +0100
commitee00d0bfbfa5ea253559038c27a23da33c528d0e (patch)
tree6e56d918c998636cd5ac65e91dda55d0048945ba /src/ch/epfl
parent57ac52bb05bef4be369ee4cf2794afb50362d3a3 (diff)
downloadxblast-ee00d0bfbfa5ea253559038c27a23da33c528d0e.tar.gz
Fix typo in constant name
Diffstat (limited to 'src/ch/epfl')
-rw-r--r--src/ch/epfl/xblast/server/Ticks.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ch/epfl/xblast/server/Ticks.java b/src/ch/epfl/xblast/server/Ticks.java
index cdccad8..c19f073 100644
--- a/src/ch/epfl/xblast/server/Ticks.java
+++ b/src/ch/epfl/xblast/server/Ticks.java
@@ -31,11 +31,11 @@ public interface Ticks {
31 /** 31 /**
32 * Duration of crumbling of a wall (in ticks). 32 * Duration of crumbling of a wall (in ticks).
33 */ 33 */
34 public static int WALL_CRUMBLLING_TICKS = EXPLOSION_TICKS; 34 public static int WALL_CRUMBLING_TICKS = EXPLOSION_TICKS;
35 35
36 /** 36 /**
37 * Duration of the presence of a bonus (in ticks). 37 * Duration of the presence of a bonus (in ticks).
38 */ 38 */
39 public static int BONUS_DISAPPEARING_TICKS = EXPLOSION_TICKS; 39 public static int BONUS_DISAPPEARING_TICKS = EXPLOSION_TICKS;
40 40
41} 41}