2019-06-25 21:18:50 +02:00
|
|
|
From e8c906ae42b88262f4e92c026b98820cc5e250f8 Mon Sep 17 00:00:00 2001
|
2018-03-22 01:51:12 +01:00
|
|
|
From: Aikar <aikar@aikar.co>
|
|
|
|
Date: Wed, 21 Mar 2018 20:52:07 -0400
|
|
|
|
Subject: [PATCH] Fix Dragon Server Crashes
|
|
|
|
|
|
|
|
If the dragon tries to find "ground" and hits a hole, or off edge,
|
|
|
|
it will infinitely keep looking for non air and eventually crash.
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/DragonControllerLandedFlame.java b/src/main/java/net/minecraft/server/DragonControllerLandedFlame.java
|
2019-06-06 17:36:57 +02:00
|
|
|
index cfe84f4d48..4ab310cd6b 100644
|
2018-03-22 01:51:12 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/DragonControllerLandedFlame.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/DragonControllerLandedFlame.java
|
2019-04-28 19:59:47 +02:00
|
|
|
@@ -53,7 +53,7 @@ public class DragonControllerLandedFlame extends AbstractDragonControllerLanded
|
|
|
|
double d2 = this.a.bA.locY + (double) (this.a.bA.getHeight() / 2.0F);
|
|
|
|
BlockPosition.MutableBlockPosition blockposition_mutableblockposition = new BlockPosition.MutableBlockPosition(d0, d2, d1);
|
2018-03-22 01:51:12 +01:00
|
|
|
|
2019-01-01 04:15:55 +01:00
|
|
|
- while (this.a.world.isEmpty(blockposition_mutableblockposition)) {
|
|
|
|
+ while (this.a.world.isEmpty(blockposition_mutableblockposition ) && d2 > 0) { // Paper
|
2018-03-22 01:51:12 +01:00
|
|
|
--d2;
|
2019-04-28 19:59:47 +02:00
|
|
|
blockposition_mutableblockposition.c(d0, d2, d1);
|
2018-03-22 01:51:12 +01:00
|
|
|
}
|
|
|
|
--
|
2019-06-25 21:18:50 +02:00
|
|
|
2.22.0
|
2018-03-22 01:51:12 +01:00
|
|
|
|