2021-03-16 09:00:00 +11:00
|
|
|
--- a/net/minecraft/CrashReport.java
|
|
|
|
+++ b/net/minecraft/CrashReport.java
|
2021-06-20 18:19:09 -07:00
|
|
|
@@ -34,8 +34,10 @@
|
|
|
|
private final SystemReport systemReport = new SystemReport();
|
|
|
|
|
2024-12-11 22:26:55 +01:00
|
|
|
public CrashReport(String message, Throwable cause) {
|
2021-06-20 18:19:09 -07:00
|
|
|
+ io.papermc.paper.util.StacktraceDeobfuscator.INSTANCE.deobfuscateThrowable(cause); // Paper
|
2024-12-11 22:26:55 +01:00
|
|
|
this.title = message;
|
|
|
|
this.exception = cause;
|
2021-11-22 09:00:00 +11:00
|
|
|
+ this.systemReport.setDetail("CraftBukkit Information", new org.bukkit.craftbukkit.CraftCrashReport()); // CraftBukkit
|
2014-11-26 08:32:16 +11:00
|
|
|
}
|
|
|
|
|
2021-11-22 09:00:00 +11:00
|
|
|
public String getTitle() {
|