From 6b064d0e689d958ab5eab0a0cfad619c357a2f2b Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 30 Jun 2014 17:35:58 +0200 Subject: [PATCH] Correctly reference static members in TFM_Jumppads. Fixes #225 --- buildnumber.properties | 4 ++-- src/me/StevenLawson/TotalFreedomMod/TFM_Jumppads.java | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/buildnumber.properties b/buildnumber.properties index 9fc06c14..204b46b0 100644 --- a/buildnumber.properties +++ b/buildnumber.properties @@ -1,3 +1,3 @@ #Build Number for ANT. Do not edit! -#Mon Jun 30 17:29:02 CEST 2014 -build.number=910 +#Mon Jun 30 17:35:21 CEST 2014 +build.number=911 diff --git a/src/me/StevenLawson/TotalFreedomMod/TFM_Jumppads.java b/src/me/StevenLawson/TotalFreedomMod/TFM_Jumppads.java index 555b0b1f..6c31cabd 100644 --- a/src/me/StevenLawson/TotalFreedomMod/TFM_Jumppads.java +++ b/src/me/StevenLawson/TotalFreedomMod/TFM_Jumppads.java @@ -102,7 +102,7 @@ public class TFM_Jumppads public static void setMode(JumpPadMode mode) { - mode = mode; + TFM_Jumppads.mode = mode; } public static double getStrength() @@ -112,7 +112,7 @@ public class TFM_Jumppads public static void setStrength(double strength) { - strength = strength; + TFM_Jumppads.strength = strength; } public static enum JumpPadMode