2020-07-05 16:50:40 +02:00
|
|
|
From d5134ce97ec215e2f08ac8c9208b1162773c53ff Mon Sep 17 00:00:00 2001
|
2020-02-26 21:44:51 +01:00
|
|
|
From: tr7zw <tr7zw@live.de>
|
|
|
|
Date: Wed, 26 Feb 2020 21:39:58 +0100
|
|
|
|
Subject: [PATCH] Don't save Fireworks and Arrows
|
|
|
|
|
|
|
|
---
|
|
|
|
src/main/java/net/minecraft/server/Entity.java | 3 ++-
|
|
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java
|
2020-07-05 16:50:40 +02:00
|
|
|
index 3db19a9bab..9430cda805 100644
|
2020-02-26 21:44:51 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/Entity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Entity.java
|
2020-07-05 16:50:40 +02:00
|
|
|
@@ -1714,7 +1714,8 @@ public abstract class Entity implements INamableTileEntity, ICommandListener, Ke
|
2020-02-26 21:44:51 +01:00
|
|
|
}
|
|
|
|
|
2020-06-27 15:45:01 +02:00
|
|
|
public boolean a_(NBTTagCompound nbttagcompound) {
|
2020-02-26 21:44:51 +01:00
|
|
|
- String s = this.getSaveID();
|
|
|
|
+ if(this instanceof EntityFireworks || this instanceof EntityArrow)return false; // YAPFA
|
|
|
|
+ String s = this.getSaveID();
|
|
|
|
|
|
|
|
if (this.persist && !this.dead && s != null) { // CraftBukkit - persist flag
|
|
|
|
nbttagcompound.setString("id", s);
|
|
|
|
--
|
|
|
|
2.25.1.windows.1
|
|
|
|
|