mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-17 16:37:43 +01:00
26 lines
873 B
Diff
26 lines
873 B
Diff
From 02de5da64c505229d1928fd4a429f75c1940f562 Mon Sep 17 00:00:00 2001
|
|
From: William Blake Galbreath <blake.galbreath@gmail.com>
|
|
Date: Sun, 2 Jun 2019 02:36:59 -0500
|
|
Subject: [PATCH] Dont spaz out startup on custom world generators
|
|
|
|
---
|
|
src/main/java/net/minecraft/server/WorldData.java | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/WorldData.java b/src/main/java/net/minecraft/server/WorldData.java
|
|
index ca4c314589..610637b46e 100644
|
|
--- a/src/main/java/net/minecraft/server/WorldData.java
|
|
+++ b/src/main/java/net/minecraft/server/WorldData.java
|
|
@@ -299,7 +299,7 @@ public class WorldData {
|
|
this.a(worldsettings);
|
|
this.levelName = s;
|
|
this.F = WorldData.a;
|
|
- this.E = false;
|
|
+ this.E = true; // Purpur
|
|
}
|
|
|
|
public void a(WorldSettings worldsettings) {
|
|
--
|
|
2.20.1
|
|
|