mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-03 13:42:25 -07:00
Add toggle for always placing the dragon egg
This commit is contained in:
@@ -0,0 +1,33 @@
|
|||||||
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
|
From: William Blake Galbreath <Blake.Galbreath@GMail.com>
|
||||||
|
Date: Thu, 26 Nov 2020 11:47:24 +0000
|
||||||
|
Subject: [PATCH] Add toggle for always placing the dragon egg
|
||||||
|
|
||||||
|
|
||||||
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||||||
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
||||||
|
@@ -0,0 +0,0 @@ public class PaperWorldConfig {
|
||||||
|
if (value != -1) entityPerChunkSaveLimits.put(type, value);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
+
|
||||||
|
+ public boolean enderDragonsDeathAlwaysPlacesDragonEgg = false;
|
||||||
|
+ private void enderDragonsDeathAlwaysPlacesDragonEgg() {
|
||||||
|
+ enderDragonsDeathAlwaysPlacesDragonEgg = getBoolean("ender-dragons-death-always-places-dragon-egg", enderDragonsDeathAlwaysPlacesDragonEgg);
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
diff --git a/src/main/java/net/minecraft/server/EnderDragonBattle.java b/src/main/java/net/minecraft/server/EnderDragonBattle.java
|
||||||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
|
--- a/src/main/java/net/minecraft/server/EnderDragonBattle.java
|
||||||
|
+++ b/src/main/java/net/minecraft/server/EnderDragonBattle.java
|
||||||
|
@@ -0,0 +0,0 @@ public class EnderDragonBattle {
|
||||||
|
this.bossBattle.setVisible(false);
|
||||||
|
this.generateExitPortal(true);
|
||||||
|
this.n();
|
||||||
|
- if (!this.previouslyKilled) {
|
||||||
|
+ if (this.world.paperConfig.enderDragonsDeathAlwaysPlacesDragonEgg || !this.previouslyKilled) { // Paper - always place dragon egg
|
||||||
|
this.world.setTypeUpdate(this.world.getHighestBlockYAt(HeightMap.Type.MOTION_BLOCKING, WorldGenEndTrophy.a), Blocks.DRAGON_EGG.getBlockData());
|
||||||
|
}
|
||||||
|
|
Reference in New Issue
Block a user