mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-03 09:19:38 +01:00
50 lines
2.2 KiB
Diff
50 lines
2.2 KiB
Diff
From 338d1a0473ae949f6236f6eee08a016391f8d976 Mon Sep 17 00:00:00 2001
|
|
From: md_5 <md_5@live.com.au>
|
|
Date: Sat, 21 Sep 2013 12:33:09 +1000
|
|
Subject: [PATCH] Allow Disabling of 1.6.3 Structure Saving
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/StructureGenerator.java b/src/main/java/net/minecraft/server/StructureGenerator.java
|
|
index dacba33..4a4d2af 100644
|
|
--- a/src/main/java/net/minecraft/server/StructureGenerator.java
|
|
+++ b/src/main/java/net/minecraft/server/StructureGenerator.java
|
|
@@ -197,7 +197,13 @@ public abstract class StructureGenerator extends WorldGenBase {
|
|
|
|
protected void a(World world) {
|
|
if (this.a == null) {
|
|
- this.a = (PersistentStructure) world.a(PersistentStructure.class, this.a());
|
|
+ // Spigot Start
|
|
+ if (world.spigotConfig.saveStructureInfo) {
|
|
+ this.a = (PersistentStructure) world.a(PersistentStructure.class, this.a());
|
|
+ } else {
|
|
+ this.a = new PersistentStructure(this.a());
|
|
+ }
|
|
+ // Spigot End
|
|
if (this.a == null) {
|
|
this.a = new PersistentStructure(this.a());
|
|
world.a(this.a(), (PersistentBase) this.a);
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
index c2452d6..89f9bc3 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
@@ -184,4 +184,16 @@ public class SpigotWorldConfig
|
|
randomLightUpdates = getBoolean( "random-light-updates", false );
|
|
log( "Random Lighting Updates: " + randomLightUpdates );
|
|
}
|
|
+
|
|
+ public boolean saveStructureInfo;
|
|
+ private void structureInfo()
|
|
+ {
|
|
+ saveStructureInfo = getBoolean( "save-structure-info", true );
|
|
+ log( "Structure Info Saving: " + saveStructureInfo );
|
|
+ if ( !saveStructureInfo )
|
|
+ {
|
|
+ log( "*** WARNING *** You have selected to NOT save structure info. This may cause structures such as fortresses to not spawn mobs!" );
|
|
+ log( "*** WARNING *** Please use this option with caution, SpigotMC is not responsible for any issues this option may cause in the future!" );
|
|
+ }
|
|
+ }
|
|
}
|
|
--
|
|
2.5.0
|
|
|