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);
|
allChunksAreSlimeChunks = getBoolean("all-chunks-are-slime-chunks", false);
|
||||||
}
|
}
|
||||||
|
|
||||||
+ public double slimeMaxSpawnHeightInSwamp;
|
+ public double slimeMaxSpawnHeightInSwamp = 70;
|
||||||
+ public double slimeMinSpawnHeightInSwamp;
|
+ public double slimeMinSpawnHeightInSwamp = 50;
|
||||||
+ public double slimeMaxSpawnHeightInSlimeChunks;
|
+ public double slimeMaxSpawnHeightInSlimeChunks = 40;
|
||||||
+ private void slimeSpawnHeight() {
|
+ private void slimeSpawnHeight() {
|
||||||
+ slimeMaxSpawnHeightInSwamp = getDouble("slime-spawn-height.swamp-biome.maximum", this.slimeMaxSpawnHeightInSwamp);
|
+ slimeMaxSpawnHeightInSwamp = getDouble("slime-spawn-height.swamp-biome.maximum", this.slimeMaxSpawnHeightInSwamp);
|
||||||
+ slimeMinSpawnHeightInSwamp = getDouble("slime-spawn-height.swamp-biome.minimum", this.slimeMinSpawnHeightInSwamp);
|
+ slimeMinSpawnHeightInSwamp = getDouble("slime-spawn-height.swamp-biome.minimum", this.slimeMinSpawnHeightInSwamp);
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||||
From: Aikar <aikar@aikar.co>
|
From: Aikar <aikar@aikar.co>
|
||||||
Date: Sat, 18 Aug 2018 12:43:16 -0400
|
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
|
limit
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue