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

23 lines
936 B
Diff
Raw Normal View History

2015-01-05 03:32:01 +00:00
From 80669595ab82cfb413eb185a18d5e4461a5b5c08 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 01:17:45 +00: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 01:17:45 +00:00
@@ -172,7 +172,7 @@ public abstract class StructureGenerator extends WorldGenBase {
private void a(World world) {
2014-11-28 01:17:45 +00:00
if (this.d == null) {
// Spigot Start
- if ( world.spigotConfig.saveStructureInfo )
+ if ( world.spigotConfig.saveStructureInfo && !this.a().equals( "Mineshaft" ) )
{
2014-11-28 01:17:45 +00:00
this.d = (PersistentStructure) world.a(PersistentStructure.class, this.a());
} else
--
2014-11-28 01:17:45 +00:00
2.1.0