Paper/CraftBukkit-Patches/0058-Prevent-Mineshaft-Saving.patch

23 lines
936 B
Diff
Raw Normal View History

From 352eba0eb3c150efd3233443ec6eb2d5deaa9d83 Mon Sep 17 00:00:00 2001
From: md_5 <git@md-5.net>
Date: Fri, 13 Dec 2013 15:21:02 +1100
Subject: [PATCH] Prevent Mineshaft Saving
diff --git a/src/main/java/net/minecraft/server/StructureGenerator.java b/src/main/java/net/minecraft/server/StructureGenerator.java
2015-02-28 12:36:22 +01:00
index bb1a11e..0f8211a 100644
--- a/src/main/java/net/minecraft/server/StructureGenerator.java
+++ b/src/main/java/net/minecraft/server/StructureGenerator.java
2015-02-28 12:36:22 +01:00
@@ -196,7 +196,7 @@ public abstract class StructureGenerator extends WorldGenBase {
private void a(World world) {
2014-11-28 02:17:45 +01:00
if (this.d == null) {
// Spigot Start
- if ( world.spigotConfig.saveStructureInfo )
+ if ( world.spigotConfig.saveStructureInfo && !this.a().equals( "Mineshaft" ) )
{
2014-11-28 02:17:45 +01:00
this.d = (PersistentStructure) world.a(PersistentStructure.class, this.a());
} else
--
2015-05-09 22:23:26 +02:00
2.1.4