mirror of
https://github.com/AtlasMediaGroup/Scissors.git
synced 2024-11-01 04:37:09 +00:00
40a91ca05e
* Slime * Add proper credits. Thanks ASP! * Cleanup
20 lines
943 B
Diff
20 lines
943 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Allink <arclicious@vivaldi.net>
|
|
Date: Mon, 20 Mar 2023 07:04:50 +0000
|
|
Subject: [PATCH] Patch invalid entity rotation log spam
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
|
|
index 842f8af14b2bd694a48ee6573d98e6cfcf910e16..e9e98f09e13d7f21333450d892cdc80b0667c915 100644
|
|
--- a/src/main/java/net/minecraft/world/entity/Entity.java
|
|
+++ b/src/main/java/net/minecraft/world/entity/Entity.java
|
|
@@ -4617,7 +4617,7 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource {
|
|
|
|
public void setXRot(float pitch) {
|
|
if (!Float.isFinite(pitch)) {
|
|
- Util.logAndPauseIfInIde("Invalid entity rotation: " + pitch + ", discarding.");
|
|
+ // Scissors - Patch invalid entity rotation log spam
|
|
} else {
|
|
this.xRot = pitch;
|
|
}
|