mirror of
https://github.com/BX-Team/DivineMC.git
synced 2025-12-22 00:09:15 +00:00
22 lines
1007 B
Diff
22 lines
1007 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: 2No2Name <2No2Name@web.de>
|
|
Date: Sun, 9 Jan 2022 06:03:28 +0100
|
|
Subject: [PATCH] lithium: entity.fast_hand_swing
|
|
|
|
Original code by CaffeineMC, licensed under GNU Lesser General Public License v3.0
|
|
You can find the original code on https://github.com/CaffeineMC/lithium-fabric (Yarn mappings)
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/LivingEntity.java b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
|
index a49d9ded1238ec393baa2a12c503e4f9774c40ed..a8fc0d36950188447490c527b199851fd88ee2aa 100644
|
|
--- a/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
|
+++ b/src/main/java/net/minecraft/world/entity/LivingEntity.java
|
|
@@ -2519,6 +2519,8 @@ public abstract class LivingEntity extends Entity {
|
|
}
|
|
|
|
protected void updateSwingTime() {
|
|
+ if (!this.swinging && this.swingTime == 0) return; // DivineMC
|
|
+
|
|
int i = this.getCurrentSwingDuration();
|
|
|
|
if (this.swinging) {
|