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

23 lines
936 B
Diff
Raw Normal View History

2015-02-26 11:40:16 +01:00
From ff86af308bf2727020508b941887e83a8399f0c9 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
2014-11-28 02:17:45 +01:00
index ecab5d1..dde9929 100644
--- a/src/main/java/net/minecraft/server/StructureGenerator.java
+++ b/src/main/java/net/minecraft/server/StructureGenerator.java
2014-11-28 02:17:45 +01:00
@@ -172,7 +172,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
--
2014-11-28 02:17:45 +01:00
2.1.0