Fix non-static variable skill issue
This commit is contained in:
parent
9ebb008250
commit
b68bd8a5ad
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
126666
javascript/classes.js
126666
javascript/classes.js
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
|
@ -57,7 +57,7 @@ public class ModManager {
|
|||
public static NoRain noRain;
|
||||
public static DynamicFOV dynamicFOV;
|
||||
public static PotionHUD potionHud;
|
||||
public NoHurtCam noHurtCam = new NoHurtCam();
|
||||
public static NoHurtCam noHurtCam = new NoHurtCam();
|
||||
public static Info coordinate;
|
||||
public static FPS fps;
|
||||
public static ReachDisplay reachDisplay;
|
||||
|
@ -78,10 +78,10 @@ public class ModManager {
|
|||
public static ClearChat clearChat;
|
||||
public static Tooltips tooltips;
|
||||
public static SmoothCamera smoothCamera;
|
||||
public FPSB fpsb = new FPSB();
|
||||
public static FPSB fpsb = new FPSB();
|
||||
public static FakeArray fakeArray;
|
||||
public static Animations animations = new Animations();
|
||||
public MinimalViewBobbing minimalViewBobbing = new MinimalViewBobbing();
|
||||
public static MinimalViewBobbing minimalViewBobbing = new MinimalViewBobbing();
|
||||
public static Watermark watermark;
|
||||
public static NoSwingDelay noSwingDelay;
|
||||
public static PotCounter potCounter;
|
||||
|
|
|
@ -20,7 +20,7 @@ public class W {
|
|||
|
||||
public static NoRain noRain(){ return ModManager.noRain; }
|
||||
public static DynamicFOV dynamicFOV(){ return ModManager.dynamicFOV; }
|
||||
public static NoHurtCam noHurtCam(){ return Resent.INSTANCE.modManager.noHurtCam; }
|
||||
public static NoHurtCam noHurtCam(){ return ModManager.noHurtCam; }
|
||||
public static AutoGG autoGG() { return ModManager.autoGG; }
|
||||
public static Freelook freelook(){ return ModManager.freelook; }
|
||||
public static ComboCounter comboCounter(){ return ModManager.comboCounter; }
|
||||
|
@ -30,6 +30,6 @@ public class W {
|
|||
public static Scoreboard scoreboard(){ return ModManager.scoreboard; }
|
||||
public static SelfNametag selfNametag(){ return ModManager.selfNametag; }
|
||||
public static ClearChat clearChat(){ return ModManager.clearChat; }
|
||||
public static FPSB fpsb() { return Resent.INSTANCE.modManager.fpsb; }
|
||||
public static FPSB fpsb() { return ModManager.fpsb; }
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user