mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2024-11-27 09:15:38 +00:00
Correctly reference static members in TFM_Jumppads. Fixes #225
This commit is contained in:
parent
8fc0673bb2
commit
6b064d0e68
@ -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
|
||||||
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user