mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 19:00:16 +01:00
25 lines
1.2 KiB
Diff
25 lines
1.2 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Aikar <aikar@aikar.co>
|
||
|
Date: Wed, 1 Jun 2016 23:29:17 -0400
|
||
|
Subject: [PATCH] Reset Ender Crystals on Dragon Spawn
|
||
|
|
||
|
Crystals can end up in a bad state in certain conditions which causes
|
||
|
an exception on the expected number of crystals going negative.
|
||
|
|
||
|
This ensures the crystals/pillars are in expected state when the dragon spawns.
|
||
|
|
||
|
See #3522
|
||
|
|
||
|
diff --git a/src/main/java/net/minecraft/world/level/dimension/end/EndDragonFight.java b/src/main/java/net/minecraft/world/level/dimension/end/EndDragonFight.java
|
||
|
index 4b18931225ef60dbcffd7fcc20d0e9ce62348a07..590df3b93b897613cad74f9920aec62b33a2f7f7 100644
|
||
|
--- a/src/main/java/net/minecraft/world/level/dimension/end/EndDragonFight.java
|
||
|
+++ b/src/main/java/net/minecraft/world/level/dimension/end/EndDragonFight.java
|
||
|
@@ -441,6 +441,7 @@ public class EndDragonFight {
|
||
|
entityenderdragon.moveTo(0.0D, 128.0D, 0.0D, this.level.random.nextFloat() * 360.0F, 0.0F);
|
||
|
this.level.addFreshEntity(entityenderdragon);
|
||
|
this.dragonUUID = entityenderdragon.getUUID();
|
||
|
+ this.resetSpikeCrystals(); // Paper
|
||
|
return entityenderdragon;
|
||
|
}
|
||
|
|