Remove client side left hand patch

This commit is contained in:
Linnea Gräf
2024-07-10 17:43:44 +02:00
parent 29478f0af0
commit c54276ee66
2 changed files with 0 additions and 34 deletions

View File

@@ -31,7 +31,6 @@ object Fixes : FirmamentFeature {
val autoSprintKeyBinding by keyBindingWithDefaultUnbound("auto-sprint-keybinding")
val autoSprintHud by position("auto-sprint-hud", 80, 10) { Point(0.0, 1.0) }
val peekChat by keyBindingWithDefaultUnbound("peek-chat")
val useClientSidedHandedness by toggle("clientside-lefthand") { true }
}
override val config: ManagedConfig
@@ -45,12 +44,6 @@ object Fixes : FirmamentFeature {
cir.returnValue = true
}
fun isLeftHandedHook(entity: PlayerEntity, cit: CallbackInfoReturnable<Arm>) = errorBoundary {
if (TConfig.useClientSidedHandedness && entity.isMainPlayer) {
cit.returnValue = MC.instance.options.mainArm.value
}
}
@Subscribe
fun onRenderHud(it: HudRenderEvent) {
if (!TConfig.autoSprintKeyBinding.isBound) return