Version 1.7.0

1.18.1 update
This commit is contained in:
tastybento 2021-12-21 14:28:31 -08:00
parent 024b311180
commit b7c30cb608
3 changed files with 6 additions and 6 deletions

View File

@ -46,12 +46,12 @@
<java.version>16</java.version>
<powermock.version>2.0.9</powermock.version>
<!-- More visible way how to change dependency versions -->
<spigot.version>1.17.1-R0.1-SNAPSHOT</spigot.version>
<bentobox.version>1.16.0</bentobox.version>
<spigot.version>1.18.1-R0.1-SNAPSHOT</spigot.version>
<bentobox.version>1.18.1</bentobox.version>
<!-- Revision variable removes warning about dynamic version -->
<revision>${build.version}-SNAPSHOT</revision>
<!-- This allows to change between versions and snapshots. -->
<build.version>1.6.1</build.version>
<build.version>1.7.0</build.version>
<build.number>-LOCAL</build.number>
<sonar.projectKey>BentoBoxWorld_Greenhouses</sonar.projectKey>
<sonar.organization>bentobox-world</sonar.organization>

View File

@ -67,7 +67,7 @@ biomes:
moblimit: 9
Cold_Rabbit:
friendlyname: "Cold Taiga Forest"
biome: TAIGA_HILLS
biome: OLD_GROWTH_SPRUCE_TAIGA
icon: SPRUCE_SAPLING
priority: 20
contents:

View File

@ -765,8 +765,8 @@ public class BiomeRecipeTest {
*/
@Test
public void testSetType() {
br.setType(Biome.BADLANDS_PLATEAU);
assertEquals(Biome.BADLANDS_PLATEAU, br.getBiome());
br.setType(Biome.BADLANDS);
assertEquals(Biome.BADLANDS, br.getBiome());
}
/**