mirror of
https://github.com/Dreeam-qwq/Gale.git
synced 2025-12-23 00:39:22 +00:00
52 lines
3.2 KiB
Diff
52 lines
3.2 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Martijn Muijsers <martijnmuijsers@live.nl>
|
|
Date: Sun, 25 Dec 2022 19:31:09 +0100
|
|
Subject: [PATCH] Don't load chunks to spawn phantoms
|
|
|
|
License: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html)
|
|
Gale - https://galemc.org
|
|
|
|
This patch is based on the following patch:
|
|
"Don't load chunks when spawning phantoms"
|
|
By: PureGero <puregero@gmail.com>
|
|
As part of: MultiPaper (https://github.com/MultiPaper/MultiPaper)
|
|
Licensed under: GPL-3.0 (https://www.gnu.org/licenses/gpl-3.0.html)
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java b/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java
|
|
index dfeb3e336e06ef01f5401a362755030db942bb07..518b40a27a8d4d015caa7e67d355839628c965ef 100644
|
|
--- a/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java
|
|
+++ b/src/main/java/net/minecraft/world/level/levelgen/PhantomSpawner.java
|
|
@@ -71,7 +71,15 @@ public class PhantomSpawner implements CustomSpawner {
|
|
|
|
if (randomsource.nextInt(j) >= world.paperConfig().entities.behavior.playerInsomniaStartTicks) { // Paper
|
|
BlockPos blockposition1 = blockposition.above(20 + randomsource.nextInt(15)).east(-10 + randomsource.nextInt(21)).south(-10 + randomsource.nextInt(21));
|
|
- BlockState iblockdata = world.getBlockState(blockposition1);
|
|
+ // Gale start - MultiPaper - don't load chunks to spawn phantoms
|
|
+ BlockState iblockdata;
|
|
+ if (world.galeConfig().smallOptimizations.loadChunks.toSpawnPhantoms) {
|
|
+ iblockdata = world.getBlockState(blockposition1);
|
|
+ } else {
|
|
+ iblockdata = world.getBlockStateIfLoaded(blockposition1);
|
|
+ if (iblockdata == null) continue;
|
|
+ }
|
|
+ // Gale end - MultiPaper - don't load chunks to spawn phantoms
|
|
FluidState fluid = world.getFluidState(blockposition1);
|
|
|
|
if (NaturalSpawner.isValidEmptySpawnBlock(world, blockposition1, iblockdata, fluid, EntityType.PHANTOM)) {
|
|
diff --git a/src/main/java/org/galemc/gale/configuration/GaleWorldConfiguration.java b/src/main/java/org/galemc/gale/configuration/GaleWorldConfiguration.java
|
|
index a6949c198f9530eda5c38019cc978876538391f4..566d33b127879c4c84557fce4ea4eb1c8c1130d5 100644
|
|
--- a/src/main/java/org/galemc/gale/configuration/GaleWorldConfiguration.java
|
|
+++ b/src/main/java/org/galemc/gale/configuration/GaleWorldConfiguration.java
|
|
@@ -92,6 +92,11 @@ public class GaleWorldConfiguration extends ConfigurationPart {
|
|
|
|
}
|
|
|
|
+ public LoadChunks loadChunks;
|
|
+ public class LoadChunks extends ConfigurationPart {
|
|
+ public boolean toSpawnPhantoms = false; // Gale - MultiPaper - don't load chunks to spawn phantoms
|
|
+ }
|
|
+
|
|
}
|
|
|
|
public GameplayMechanics gameplayMechanics;
|