aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/features/fixes
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-07-10 17:43:44 +0200
committerLinnea Gräf <nea@nea.moe>2024-07-10 17:43:44 +0200
commitc54276ee6644e5c9f90b55ada86c23a7f0d905bc (patch)
treeeb779173ce3d2446333696248312bc837bfab6cc /src/main/kotlin/moe/nea/firmament/features/fixes
parent29478f0af093d726f2596f174d58331dd409208b (diff)
downloadfirmament-c54276ee6644e5c9f90b55ada86c23a7f0d905bc.tar.gz
firmament-c54276ee6644e5c9f90b55ada86c23a7f0d905bc.tar.bz2
firmament-c54276ee6644e5c9f90b55ada86c23a7f0d905bc.zip
Remove client side left hand patch
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/features/fixes')
-rw-r--r--src/main/kotlin/moe/nea/firmament/features/fixes/Fixes.kt7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/features/fixes/Fixes.kt b/src/main/kotlin/moe/nea/firmament/features/fixes/Fixes.kt
index 26cfe6b..47ff86a 100644
--- a/src/main/kotlin/moe/nea/firmament/features/fixes/Fixes.kt
+++ b/src/main/kotlin/moe/nea/firmament/features/fixes/Fixes.kt
@@ -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