mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-08 08:02:13 -07:00
Update to Minecraft 1.13-pre7
This commit is contained in:
@@ -9,18 +9,3 @@
|
||||
} else if (entity instanceof EntityEnderCrystal) {
|
||||
this.addEntity(entity, 256, Integer.MAX_VALUE, false);
|
||||
} else if (entity instanceof EntityEvokerFangs) {
|
||||
@@ -120,11 +120,12 @@
|
||||
CrashReportSystemDetails crashreportsystemdetails = crashreport.a("Entity To Track");
|
||||
|
||||
crashreportsystemdetails.a("Tracking range", (Object) (i + " blocks"));
|
||||
+ final int finalI = i; // CraftBukkit - fix decompile error
|
||||
crashreportsystemdetails.a("Update interval", new CrashReportCallable() {
|
||||
public String a() throws Exception {
|
||||
- String s = "Once per " + i + " ticks";
|
||||
+ String s = "Once per " + finalI + " ticks"; // CraftBukkit
|
||||
|
||||
- if (i == Integer.MAX_VALUE) {
|
||||
+ if (finalI == Integer.MAX_VALUE) { // CraftBukkit
|
||||
s = "Maximum (" + s + ")";
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user