2018-07-22 12:00:00 +10:00
|
|
|
From b0ddc42c7e1135b3cbc7c2280e3017ef64accc81 Mon Sep 17 00:00:00 2001
|
2014-04-12 14:18:37 +10:00
|
|
|
From: md_5 <git@md-5.net>
|
|
|
|
Date: Sun, 12 Jan 2014 20:56:41 +1100
|
|
|
|
Subject: [PATCH] Try and Debug Crash Reports Crashing
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2018-07-22 12:00:00 +10:00
|
|
|
index fdebfc5c7..0c776692b 100644
|
2014-04-12 14:18:37 +10:00
|
|
|
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
|
2018-07-22 12:00:00 +10:00
|
|
|
@@ -899,7 +899,13 @@ public abstract class MinecraftServer implements IAsyncTaskHandler, IMojangStati
|
2014-04-12 14:18:37 +10:00
|
|
|
worldserver.doTick();
|
2014-07-07 18:59:02 -04:00
|
|
|
worldserver.timings.doTick.stopTiming(); // Spigot
|
2015-02-28 11:36:22 +00:00
|
|
|
} catch (Throwable throwable) {
|
2014-04-12 14:18:37 +10:00
|
|
|
+ // Spigot Start
|
|
|
|
+ try {
|
2015-02-28 11:36:22 +00:00
|
|
|
crashreport = CrashReport.a(throwable, "Exception ticking world");
|
2014-04-12 14:18:37 +10:00
|
|
|
+ } catch (Throwable t){
|
|
|
|
+ throw new RuntimeException("Error generating crash report", t);
|
|
|
|
+ }
|
|
|
|
+ // Spigot End
|
|
|
|
worldserver.a(crashreport);
|
|
|
|
throw new ReportedException(crashreport);
|
|
|
|
}
|
2018-07-22 12:00:00 +10:00
|
|
|
@@ -909,7 +915,13 @@ public abstract class MinecraftServer implements IAsyncTaskHandler, IMojangStati
|
2014-04-12 14:18:37 +10:00
|
|
|
worldserver.tickEntities();
|
2014-07-07 18:59:02 -04:00
|
|
|
worldserver.timings.tickEntities.stopTiming(); // Spigot
|
2015-02-28 11:36:22 +00:00
|
|
|
} catch (Throwable throwable1) {
|
2014-04-12 14:18:37 +10:00
|
|
|
+ // Spigot Start
|
|
|
|
+ try {
|
2015-02-28 11:36:22 +00:00
|
|
|
crashreport = CrashReport.a(throwable1, "Exception ticking world entities");
|
2014-04-12 14:18:37 +10:00
|
|
|
+ } catch (Throwable t){
|
|
|
|
+ throw new RuntimeException("Error generating crash report", t);
|
|
|
|
+ }
|
|
|
|
+ // Spigot End
|
|
|
|
worldserver.a(crashreport);
|
|
|
|
throw new ReportedException(crashreport);
|
|
|
|
}
|
|
|
|
--
|
2018-07-15 10:00:00 +10:00
|
|
|
2.17.1
|
2014-04-12 14:18:37 +10:00
|
|
|
|