2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/CrashReport.java
|
|
|
|
+++ b/net/minecraft/CrashReport.java
|
2021-06-21 03:19:09 +02: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-21 03:19:09 +02: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-21 23:00:00 +01:00
|
|
|
+ this.systemReport.setDetail("CraftBukkit Information", new org.bukkit.craftbukkit.CraftCrashReport()); // CraftBukkit
|
2014-11-25 22:32:16 +01:00
|
|
|
}
|
|
|
|
|
2021-11-21 23:00:00 +01:00
|
|
|
public String getTitle() {
|