2022-06-09 10:51:45 +02:00
|
|
|
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/net/minecraft/world/item/SpawnEggItem.java b/src/main/java/net/minecraft/world/item/SpawnEggItem.java
|
2022-12-07 21:16:54 +01:00
|
|
|
index 5d50e9c837628638019166e224905a9de69b1ae4..31268e25056f980798ef7db72c4f955a074cc639 100644
|
2022-06-09 10:51:45 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/item/SpawnEggItem.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/item/SpawnEggItem.java
|
|
|
|
@@ -61,7 +61,7 @@ public class SpawnEggItem extends Item {
|
|
|
|
Direction enumdirection = context.getClickedFace();
|
|
|
|
BlockState iblockdata = world.getBlockState(blockposition);
|
|
|
|
|
|
|
|
- if (iblockdata.is(Blocks.SPAWNER)) {
|
|
|
|
+ if (!world.paperConfig().entities.spawning.disableMobSpawnerSpawnEggTransformation && iblockdata.is(Blocks.SPAWNER)) { // Paper
|
|
|
|
BlockEntity tileentity = world.getBlockEntity(blockposition);
|
|
|
|
|
|
|
|
if (tileentity instanceof SpawnerBlockEntity) {
|