3 Commits

Author SHA1 Message Date
ee448ae34d Removed debug message
All checks were successful
build / build (push) Successful in 1m11s
2025-04-27 16:36:36 +02:00
69df0e5850 Cleaned up some code 2025-04-27 15:41:38 +02:00
4988a91e70 Fixed mixin class types 2025-04-27 15:37:14 +02:00
8 changed files with 11 additions and 13 deletions

View File

@ -7,7 +7,6 @@ import net.minecraft.client.option.KeyBinding;
import net.minecraft.client.util.InputUtil;
import net.minecraft.text.Text;
import org.lwjgl.glfw.GLFW;
import wtf.hak.survivalfabric.utils.MathUtils;
public class Zoom {
@ -47,6 +46,5 @@ public class Zoom {
} else if (zoomFov > 110) {
ZOOM_STEP = Math.round((110 - INITIAL_ZOOM) / ZOOM_STEP_VALUE);
}
MinecraftClient.getInstance().player.sendMessage(Text.literal(ZOOM_STEP + ""), true);
}
}

View File

@ -16,7 +16,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
import static wtf.hak.survivalfabric.config.client.ClientConfigManager.getConfig;
@Mixin(value = BackgroundRenderer.class, priority = 910)
public abstract class BackgroundRendererMixin {
public class BackgroundRendererMixin {
@Unique
private static final Fog EMPTY_FOG = new Fog(-8.0f, 1_000_000.0F, FogShape.CYLINDER, 0, 0, 0, 0);

View File

@ -8,7 +8,7 @@ import org.spongepowered.asm.mixin.injection.At;
import wtf.hak.survivalfabric.features.Zoom;
@Mixin(GameRenderer.class)
public abstract class GameRendererMixin {
public class GameRendererMixin {
/**
* Modify Zoom FOV

View File

@ -8,7 +8,7 @@ import org.spongepowered.asm.mixin.injection.ModifyArg;
import wtf.hak.survivalfabric.config.ConfigManager;
@Mixin(ServerPlayNetworkHandler.class)
public abstract class ServerPlayNetworkHandlerMixin {
public class ServerPlayNetworkHandlerMixin {
/**
* Modify quit message

View File

@ -10,7 +10,7 @@ import wtf.hak.survivalfabric.commands.SpectatorCommand;
import wtf.hak.survivalfabric.config.ConfigManager;
@Mixin(ServerPlayerEntity.class)
public abstract class ServerPlayerEntityMixin {
public class ServerPlayerEntityMixin {
/**
* Change player list name if enabled