Merge pull request #102 from Silent-Client/TEST2

Test2
This commit is contained in:
kirillsaint 2024-03-15 15:32:26 +06:00 committed by GitHub
commit 284b7c2877
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 1 additions and 9 deletions

View File

@ -1,4 +1,3 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<component name="FrameworkDetectionExcludesConfiguration">

View File

@ -93,7 +93,7 @@ public class RendererLivingEntityMixin<T extends EntityLivingBase> {
return;
}
}
if(entity instanceof EntityArmorStand && (Client.getInstance().getSettingsManager().getSettingByClass(FPSBoostMod.class, "Hide Armor Stands").getValBoolean() || entity.isInvisible())) {
if(entity instanceof EntityArmorStand && Client.getInstance().getSettingsManager().getSettingByClass(FPSBoostMod.class, "Hide Armor Stands").getValBoolean()) {
((RendererLivingEntity<EntityArmorStand>) (Object) this).renderName((EntityArmorStand) entity, x, y, z);
ci.cancel();
}

View File

@ -25,8 +25,6 @@ public class ScoreboardMod extends Mod {
@Override
public void setup() {
this.setUpdated(true);
this.addSliderSetting("Scale", this, 1, 0.3, 2, false);
this.addBooleanSetting("Header Background", this, true);

View File

@ -12,7 +12,6 @@ public class AnimationsMod extends Mod {
@Override
public void setup() {
this.setUpdated(true);
this.addBooleanSetting("1.7 Item Positions", this, true);
this.addBooleanSetting("1.7 Bow Pullback", this, true);
this.addBooleanSetting("1.7 Block Animation", this, true);

View File

@ -15,7 +15,6 @@ public class HitColorMod extends Mod {
@Override
public void setup() {
this.setUpdated(true);
this.addColorSetting("Color", this, new Color(255, 0, 0), 76);
}

View File

@ -56,7 +56,6 @@ public class CrosshairMod extends Mod {
@Override
public void setup() {
this.setUpdated(true);
this.addBooleanSetting("Preset Crosshair", this, false);
ArrayList<String> presets = new ArrayList<String>();

View File

@ -38,8 +38,6 @@ public class FPSBoostMod extends Mod {
@Override
public void setup() {
this.setUpdated(true);
ArrayList<String> lazyLoading = new ArrayList<String>();
lazyLoading.add("Off");