3
0

Fix inventory wiping on keepInventory=true

This commit is contained in:
Sergey Shatunov
2016-02-06 15:19:45 +07:00
parent 0b251c5440
commit 84276822ea
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@
+ this.theReportCategory.addCrashSectionCallable("KCauldron Version", new Callable<String>() {
+ @Override
+ public String call() throws Exception {
+ return String.format("%s:%s:%s", KCauldron.getGroup(), KCauldron.getChannel(), KCauldron.getCurrentVersion());
+ return String.format("%s:%s:%s %s", KCauldron.getGroup(), KCauldron.getChannel(), KCauldron.getCurrentVersion(), KCauldron.isOfficial() ? "Official" : "UNOFFICIAL DON'T REPORT THIS CRASH");
+ }
+ });
+ this.theReportCategory.addCrashSectionCallable("Plugins", new Callable<String>() {