Skip to content

Commit

Permalink
Merge pull request #10 from BentoBoxWorld/develop
Browse files Browse the repository at this point in the history
Release 1.2.1
  • Loading branch information
tastybento authored Feb 24, 2025
2 parents da727e0 + 7b0a488 commit 114cb17
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,3 @@ The main idea of the addon is to allow faster grow any plant on your island.
The main difference from TwerkingForTrees is that this addon should work on any growable plant, including cactus, pumpkin and mushrooms.

More information you can find in addon Wiki Page: [Farmers Dance Addon](https://docs.bentobox.world/en/latest/addons/FarmersDance/)

This addon is still in ALPHA. This is just an early preview.

## Compatibility

- [x] BentoBox 1.20.0+
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@
<java.version>21</java.version>
<powermock.version>2.0.9</powermock.version>
<!-- More visible way how to change dependency versions -->
<spigot.version>1.21.3-R0.1-SNAPSHOT</spigot.version>
<spigot.version>1.21.4-R0.1-SNAPSHOT</spigot.version>
<!-- BentoBox API version -->
<bentobox.version>2.7.1-SNAPSHOT</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.2.0</build.version>
<build.version>1.2.1</build.version>
<build.number>-LOCAL</build.number>
</properties>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ else if (Tag.CROPS.isTagged(block.getType()))
this.spawnParticle(block.getLocation());
}
}
else if (Tag.TALL_FLOWERS.isTagged(block.getType()) || Material.PINK_PETALS.equals(block.getType()))
else if (Tag.FLOWERS.isTagged(block.getType()) || Material.PINK_PETALS.equals(block.getType()))
{
if (growTallFlowers)
{
Expand Down Expand Up @@ -199,6 +199,9 @@ else if (Material.RED_MUSHROOM.equals(block.getType()) || Material.BROWN_MUSHROO
block.applyBoneMeal(BlockFace.UP);
this.spawnParticle(block.getLocation());
}
default -> {
// Ignore others
}
}
}
}
Expand Down

0 comments on commit 114cb17

Please sign in to comment.