diff --git a/.github/ISSUE_TEMPLATE/1-bug_report.yml b/.github/ISSUE_TEMPLATE/1-bug_report.yml index 29419e110..4a03de41c 100644 --- a/.github/ISSUE_TEMPLATE/1-bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1-bug_report.yml @@ -1,11 +1,11 @@ -name: 1.19.3+ Bug Report +name: 1.20.2 Bug Report description: File a bug report labels: [bug] body: - type: markdown attributes: value: | - For bugs experienced with Minecraft 1.19.3+. Older versions are not supported. + For bugs experienced with Minecraft 1.20.2. Older versions are not supported. If any section does not apply, replace its content with "N/A". Please search for existing bug reports before making your own report. diff --git a/.github/ISSUE_TEMPLATE/2-crash_report.yml b/.github/ISSUE_TEMPLATE/2-crash_report.yml index dab04e27d..8e6f56f33 100644 --- a/.github/ISSUE_TEMPLATE/2-crash_report.yml +++ b/.github/ISSUE_TEMPLATE/2-crash_report.yml @@ -1,11 +1,11 @@ -name: 1.19.3+ Crash Report +name: 1.20.2 Crash Report description: File a crash report labels: [crash] body: - type: markdown attributes: value: | - For crashes experienced with Minecraft 1.19.3+. Older versions are not supported. + For crashes experienced with Minecraft 1.20.2. Older versions are not supported. If any section does not apply, replace its content with "N/A". Please search for existing crash reports before making your own report. diff --git a/.github/ISSUE_TEMPLATE/3-feature_request.yml b/.github/ISSUE_TEMPLATE/3-feature_request.yml index 758248866..140d89f3f 100644 --- a/.github/ISSUE_TEMPLATE/3-feature_request.yml +++ b/.github/ISSUE_TEMPLATE/3-feature_request.yml @@ -1,11 +1,11 @@ -name: 1.19.3+ Feature Request +name: 1.20.2 Feature Request description: Request a new feature labels: [feature] body: - type: markdown attributes: value: | - Feature requests for Minecraft 1.19.3+. Older versions are not supported. + Feature requests for Minecraft 1.20.2. Older versions are not supported. If any section does not apply, replace its contents with "N/A". Please search for existing feature requests before you make your own request. diff --git a/README.md b/README.md index c46d8e734..25b641136 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,9 @@
- + -https://discord.gg/GyyzU6T
- -**Biomes O' Plenty** is a **Minecraft mod** that adds **over 50 new biomes** to the Overworld, Nether, and End. From Lavender Fields to Redwood Forests and many more, all of our biomes are decorated with a variety of **new trees, flowers, and plants!** +**Biomes O' Plenty** is an expansive biome mod for Minecraft that adds a slew of **new, unique biomes to the Overworld and Nether!** To go along with the new biomes, it adds **new plants, flowers, trees, building blocks, and much more!** ----------------- -© 2022 Glitchfiend. All rights reserved. +© 2023 Glitchfiend. All rights reserved. diff --git a/src/main/java/biomesoplenty/common/block/ThermalCalciteBlock.java b/src/main/java/biomesoplenty/common/block/ThermalCalciteBlock.java index 52bed5955..1c69ec9ba 100644 --- a/src/main/java/biomesoplenty/common/block/ThermalCalciteBlock.java +++ b/src/main/java/biomesoplenty/common/block/ThermalCalciteBlock.java @@ -36,7 +36,7 @@ public void animateTick(BlockState stateIn, Level worldIn, BlockPos pos, RandomS super.animateTick(stateIn, worldIn, pos, rand); if (worldIn.getBlockState(pos.above()).getFluidState().getType() == Fluids.WATER && worldIn.getBlockState(pos.above()).getFluidState().getAmount() == 8) { - worldIn.addAlwaysVisibleParticle(ParticleTypes.BUBBLE_COLUMN_UP, (double) (pos.getX() + 0.5D + ((rand.nextDouble() - rand.nextDouble()) / 6.0D)), (double) (pos.getY() + 1.0D), (double) (pos.getZ() + 0.5D + ((rand.nextDouble() - rand.nextDouble()) / 6.0D)), 0.0D, 0.0D, 0.0D); + worldIn.addAlwaysVisibleParticle(ParticleTypes.BUBBLE_COLUMN_UP, (double) (pos.getX() + 0.5D + ((rand.nextDouble() - rand.nextDouble()) / 2.0D)), (double) (pos.getY() + 1.0D), (double) (pos.getZ() + 0.5D + ((rand.nextDouble() - rand.nextDouble()) / 2.0D)), 0.0D, 0.0D, 0.0D); } }