2019-02-03 16:34:04 +01:00
|
|
|
From 450f1569886930ab72e304d38a2a369e50d37249 Mon Sep 17 00:00:00 2001
|
2014-12-22 22:13:29 +01:00
|
|
|
From: Aikar <aikar@aikar.co>
|
2016-03-01 00:09:49 +01:00
|
|
|
Date: Tue, 1 Mar 2016 23:52:34 -0600
|
2014-12-22 22:13:29 +01:00
|
|
|
Subject: [PATCH] Prevent tile entity and entity crashes
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntity.java b/src/main/java/net/minecraft/server/TileEntity.java
|
2018-12-17 06:18:06 +01:00
|
|
|
index 68ac014aa..c5212417c 100644
|
2014-12-22 22:13:29 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntity.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntity.java
|
2018-07-27 06:44:53 +02:00
|
|
|
@@ -178,7 +178,12 @@ public abstract class TileEntity implements KeyedObject { // Paper
|
2018-08-26 20:11:49 +02:00
|
|
|
return IRegistry.BLOCK_ENTITY_TYPE.getKey(this.C()) + " // " + this.getClass().getCanonicalName();
|
2015-03-08 02:16:09 +01:00
|
|
|
});
|
2014-12-22 22:13:29 +01:00
|
|
|
if (this.world != null) {
|
2018-07-15 03:53:17 +02:00
|
|
|
- CrashReportSystemDetails.a(crashreportsystemdetails, this.position, this.getBlock());
|
2016-03-01 00:09:49 +01:00
|
|
|
+ // Paper start - Prevent TileEntity and Entity crashes
|
2018-07-15 03:53:17 +02:00
|
|
|
+ IBlockData block = this.getBlock();
|
2015-03-08 02:16:09 +01:00
|
|
|
+ if (block != null) {
|
2018-07-15 03:53:17 +02:00
|
|
|
+ CrashReportSystemDetails.a(crashreportsystemdetails, this.position, block);
|
2014-12-22 22:13:29 +01:00
|
|
|
+ }
|
2016-03-01 00:09:49 +01:00
|
|
|
+ // Paper end
|
2018-07-15 03:53:17 +02:00
|
|
|
CrashReportSystemDetails.a(crashreportsystemdetails, this.position, this.world.getType(this.position));
|
|
|
|
}
|
|
|
|
}
|
2014-12-22 22:13:29 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java
|
2019-02-03 16:34:04 +01:00
|
|
|
index 7e73e00ce..891f0bb35 100644
|
2014-12-22 22:13:29 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/World.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/World.java
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -1147,10 +1147,12 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2016-03-25 05:59:37 +01:00
|
|
|
entity.tickTimer.stopTiming(); // Paper
|
2014-12-22 22:13:29 +01:00
|
|
|
} catch (Throwable throwable1) {
|
2016-03-25 05:59:37 +01:00
|
|
|
entity.tickTimer.stopTiming();
|
2016-03-01 00:09:49 +01:00
|
|
|
- crashreport1 = CrashReport.a(throwable1, "Ticking entity");
|
|
|
|
- crashreportsystemdetails1 = crashreport1.a("Entity being ticked");
|
|
|
|
- entity.appendEntityCrashDetails(crashreportsystemdetails1);
|
|
|
|
- throw new ReportedException(crashreport1);
|
|
|
|
+ // Paper start - Prevent tile entity and entity crashes
|
2014-12-22 22:13:29 +01:00
|
|
|
+ System.err.println("Entity threw exception at " + entity.world.getWorld().getName() + ":" + entity.locX + "," + entity.locY + "," + entity.locZ);
|
|
|
|
+ throwable1.printStackTrace();
|
|
|
|
+ entity.dead = true;
|
|
|
|
+ continue;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ // Paper end
|
2014-12-22 22:13:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-03 16:34:04 +01:00
|
|
|
@@ -1213,10 +1215,13 @@ public abstract class World implements IEntityAccess, GeneratorAccess, IIBlockAc
|
2018-12-17 06:18:06 +01:00
|
|
|
((ITickable) tileentity).tick();
|
|
|
|
this.methodProfiler.exit();
|
2014-12-22 22:13:29 +01:00
|
|
|
} catch (Throwable throwable2) {
|
2016-03-01 00:09:49 +01:00
|
|
|
- crashreport1 = CrashReport.a(throwable2, "Ticking block entity");
|
|
|
|
- crashreportsystemdetails1 = crashreport1.a("Block entity being ticked");
|
2014-12-22 22:13:29 +01:00
|
|
|
- tileentity.a(crashreportsystemdetails1);
|
|
|
|
- throw new ReportedException(crashreport1);
|
2016-03-01 00:09:49 +01:00
|
|
|
+ // Paper start - Prevent tile entity and entity crashes
|
2014-12-22 22:13:29 +01:00
|
|
|
+ System.err.println("TileEntity threw exception at " + tileentity.world.getWorld().getName() + ":" + tileentity.position.getX() + "," + tileentity.position.getY() + "," + tileentity.position.getZ());
|
|
|
|
+ throwable2.printStackTrace();
|
2015-09-19 16:34:17 +02:00
|
|
|
+ tilesThisCycle--;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ this.tileEntityListTick.remove(tileTickPosition--);
|
2014-12-22 22:13:29 +01:00
|
|
|
+ continue;
|
2016-03-01 00:09:49 +01:00
|
|
|
+ // Paper end
|
2014-12-22 22:13:29 +01:00
|
|
|
}
|
|
|
|
// Spigot start
|
|
|
|
finally {
|
|
|
|
--
|
2019-01-01 04:15:55 +01:00
|
|
|
2.20.1
|
2014-12-22 22:13:29 +01:00
|
|
|
|