mirror of
https://github.com/PaperMC/Paper.git
synced 2025-02-17 02:34:30 +01:00
Fix defaults for slime-spawn-height in paper config
do note that if you happened to grab the previous build in the few minutes it was alive, you'll want to reset your settings here also, i
This commit is contained in:
parent
a663146adb
commit
68ee3947db
2 changed files with 4 additions and 4 deletions
|
@ -12,9 +12,9 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||
allChunksAreSlimeChunks = getBoolean("all-chunks-are-slime-chunks", false);
|
||||
}
|
||||
|
||||
+ public double slimeMaxSpawnHeightInSwamp;
|
||||
+ public double slimeMinSpawnHeightInSwamp;
|
||||
+ public double slimeMaxSpawnHeightInSlimeChunks;
|
||||
+ public double slimeMaxSpawnHeightInSwamp = 70;
|
||||
+ public double slimeMinSpawnHeightInSwamp = 50;
|
||||
+ public double slimeMaxSpawnHeightInSlimeChunks = 40;
|
||||
+ private void slimeSpawnHeight() {
|
||||
+ slimeMaxSpawnHeightInSwamp = getDouble("slime-spawn-height.swamp-biome.maximum", this.slimeMaxSpawnHeightInSwamp);
|
||||
+ slimeMinSpawnHeightInSwamp = getDouble("slime-spawn-height.swamp-biome.minimum", this.slimeMinSpawnHeightInSwamp);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: Aikar <aikar@aikar.co>
|
||||
Date: Sat, 18 Aug 2018 12:43:16 -0400
|
||||
Subject: [PATCH] Restore vanlla default mob-spawn-range and water animals
|
||||
Subject: [PATCH] Restore vanilla default mob-spawn-range and water animals
|
||||
limit
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue