mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-09-18 21:33:01 +00:00
22 lines
1,012 B
Diff
22 lines
1,012 B
Diff
From 13bda1bf0be57c57df345399a5f10fb258aa36d8 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
|
|
index 0a6e5b327..74e3f42cd 100644
|
|
--- a/src/main/java/net/minecraft/server/StructureGenerator.java
|
|
+++ b/src/main/java/net/minecraft/server/StructureGenerator.java
|
|
@@ -144,7 +144,7 @@ public abstract class StructureGenerator extends WorldGenBase {
|
|
protected void a(World world) {
|
|
if (this.a == null && world != null) {
|
|
// Spigot Start
|
|
- if (world.spigotConfig.saveStructureInfo) {
|
|
+ if (world.spigotConfig.saveStructureInfo && !this.a().equals( "Mineshaft" )) {
|
|
this.a = (PersistentStructure) world.a(PersistentStructure.class, this.a());
|
|
} else {
|
|
this.a = new PersistentStructure(this.a());
|
|
--
|
|
2.11.0
|
|
|