2019-07-20 06:01:24 +02:00
|
|
|
From 36ee48b6a551302d65c329ee8790f1d3c58e531b 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-07-20 06:01:24 +02:00
|
|
|
index a75128f966..98e15834ab 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
|
|
|
|