mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
64b19558b6
CraftBukkit removed their implementation that caused this issue, switching to Mojang's implementation which doesn't appear to share it. I already removed the important bit in the last upstream merge, this is just unused and unnecessary now. So we remove it.
19 lines
No EOL
831 B
Diff
19 lines
No EOL
831 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Zach Brown <1254957+zachbr@users.noreply.github.com>
|
|
Date: Sat, 14 Jan 2017 01:22:07 -0600
|
|
Subject: [PATCH] Assign the World in WorldGenStronghold
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldGenStronghold.java b/src/main/java/net/minecraft/server/WorldGenStronghold.java
|
|
index c93754704..a3b958e01 100644
|
|
--- a/src/main/java/net/minecraft/server/WorldGenStronghold.java
|
|
+++ b/src/main/java/net/minecraft/server/WorldGenStronghold.java
|
|
@@ -0,0 +0,0 @@ public class WorldGenStronghold extends StructureGenerator {
|
|
}
|
|
|
|
public BlockPosition getNearestGeneratedFeature(World world, BlockPosition blockposition, boolean flag) {
|
|
+ this.g = world; // Paper
|
|
if (!this.b) {
|
|
this.c();
|
|
this.b = true;
|
|
--
|