Correctly reference static members in TFM_Jumppads. Fixes #225

This commit is contained in:
unknown 2014-06-30 17:35:58 +02:00
parent 8fc0673bb2
commit 6b064d0e68
2 changed files with 4 additions and 4 deletions

View file

@ -1,3 +1,3 @@
#Build Number for ANT. Do not edit! #Build Number for ANT. Do not edit!
#Mon Jun 30 17:29:02 CEST 2014 #Mon Jun 30 17:35:21 CEST 2014
build.number=910 build.number=911

View file

@ -102,7 +102,7 @@ public class TFM_Jumppads
public static void setMode(JumpPadMode mode) public static void setMode(JumpPadMode mode)
{ {
mode = mode; TFM_Jumppads.mode = mode;
} }
public static double getStrength() public static double getStrength()
@ -112,7 +112,7 @@ public class TFM_Jumppads
public static void setStrength(double strength) public static void setStrength(double strength)
{ {
strength = strength; TFM_Jumppads.strength = strength;
} }
public static enum JumpPadMode public static enum JumpPadMode