Skip to content

Commit

Permalink
Tweaked bubble particle spawning for Thermal Calcite blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
Forstride committed Nov 22, 2023
1 parent 0a8421b commit 2c0404a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/1-bug_report.yml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/2-crash_report.yml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/3-feature_request.yml
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
<p align="center"><img src="https://i.imgur.com/HQ2opH6.png"></p>

<p align="center"><img src="https://i.imgur.com/CYxKg5M.png"></p>
<p align="center"><img src="https://i.imgur.com/5Qzjnjl.png"></p> <p align="center"><a href="https://github.com/Glitchfiend/TerraBlender"><img src="https://i.imgur.com/bm33WkP.png"></a></p> <p align="center"><a href="https://discord.gg/GyyzU6T"><img src="https://i.imgur.com/DcQnyAG.png"></a></p>

<p align="center">https://discord.gg/GyyzU6T</p>

**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.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

Expand Down

0 comments on commit 2c0404a

Please sign in to comment.