mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-01 17:01:56 +01:00
34 lines
2 KiB
Diff
34 lines
2 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: BrodyBeckwith <brody@beckwith.dev>
|
||
|
Date: Fri, 9 Oct 2020 20:30:12 -0400
|
||
|
Subject: [PATCH] Allow disabling mob spawner spawn egg transformation
|
||
|
|
||
|
|
||
|
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 {
|
||
|
private void fixCuringExploit() {
|
||
|
fixCuringZombieVillagerDiscountExploit = getBoolean("game-mechanics.fix-curing-zombie-villager-discount-exploit", fixCuringZombieVillagerDiscountExploit);
|
||
|
}
|
||
|
+
|
||
|
+ public boolean disableMobSpawnerSpawnEggTransformation = false;
|
||
|
+ private void disableMobSpawnerSpawnEggTransformation() {
|
||
|
+ disableMobSpawnerSpawnEggTransformation = getBoolean("game-mechanics.disable-mob-spawner-spawn-egg-transformation", disableMobSpawnerSpawnEggTransformation);
|
||
|
+ }
|
||
|
}
|
||
|
diff --git a/src/main/java/net/minecraft/world/item/SpawnEggItem.java b/src/main/java/net/minecraft/world/item/SpawnEggItem.java
|
||
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||
|
--- a/src/main/java/net/minecraft/world/item/SpawnEggItem.java
|
||
|
+++ b/src/main/java/net/minecraft/world/item/SpawnEggItem.java
|
||
|
@@ -0,0 +0,0 @@ public class SpawnEggItem extends Item {
|
||
|
Direction enumdirection = context.getClickedFace();
|
||
|
BlockState iblockdata = world.getBlockState(blockposition);
|
||
|
|
||
|
- if (iblockdata.is(Blocks.SPAWNER)) {
|
||
|
+ if (!world.paperConfig.disableMobSpawnerSpawnEggTransformation && iblockdata.is(Blocks.SPAWNER)) { // Paper
|
||
|
BlockEntity tileentity = world.getBlockEntity(blockposition);
|
||
|
|
||
|
if (tileentity instanceof SpawnerBlockEntity) {
|