disable items for potted flowers

This commit is contained in:
nelle 2024-12-22 12:17:26 -07:00
parent 8b5f97892c
commit 30d871e41a
6 changed files with 11 additions and 18 deletions

View file

@ -9,7 +9,7 @@ org.gradle.jvmargs=-Xmx1G
kotlin_loader_version=1.13.0+kotlin.2.1.0 kotlin_loader_version=1.13.0+kotlin.2.1.0
# Mod Properties # Mod Properties
mod_version = 1.0+1.20-1.20.4 mod_version = 1.1+1.20-1.20.4
maven_group = observer.nelle maven_group = observer.nelle
archives_base_name = roses_mod archives_base_name = roses_mod

View file

@ -1,11 +0,0 @@
// 1.20.4 2024-12-22T02:13:48.60704575 Roses Mod/
b5132e15afd18ca7cfbde9bece704d9979cc0618 data/roses_mod/worldgen/placed_feature/rose_placed.json
15c2ae2a52afeb92492c0a969eb6a834ee792028 data/roses_mod/worldgen/placed_feature/cyan_rose_common_placed.json
68d13c6af6006b41d01201c517ecde01ae19f29e data/roses_mod/worldgen/configured_feature/cyan_rose_flower.json
677e07b8d113f53c1702e801c4425096b607df9c data/roses_mod/worldgen/placed_feature/cyan_rose_rare_placed.json
619f111dc2852139adb5c9ef798fe53fdae6d3c7 data/roses_mod/worldgen/placed_feature/cyan_rose_placed.json
6507e65a9e72c7bc6a97c3e996ceb82967b59311 data/roses_mod/worldgen/placed_feature/rose_common_placed.json
3f9e7faece178de35182469614527751f7447cd5 data/roses_mod/worldgen/configured_feature/cyan_rose_bush.json
134908f348dd2d85f329150816bf4cf5b8a1cfa9 data/roses_mod/worldgen/placed_feature/cyan_rose_bush_placed.json
1f0dac393835039f9ebe2a4c14c0b43fc62c5512 data/roses_mod/worldgen/configured_feature/rose_flower.json
5b0a542bdd658c02ee5ab5ed428997a6204165f1 data/roses_mod/worldgen/placed_feature/rose_rare_placed.json

View file

@ -30,7 +30,7 @@ object RosesBlocks {
AbstractBlock.Settings.copy(Blocks.POTTED_POPPY), AbstractBlock.Settings.copy(Blocks.POTTED_POPPY),
), ),
"potted_rose", "potted_rose",
true, false,
) )
val cyanRoseFlower: Block? = val cyanRoseFlower: Block? =
register( register(
@ -49,7 +49,7 @@ object RosesBlocks {
AbstractBlock.Settings.copy(Blocks.POTTED_POPPY), AbstractBlock.Settings.copy(Blocks.POTTED_POPPY),
), ),
"potted_cyan", "potted_cyan",
true, false,
) )
val cyanRoseBush: Block? = val cyanRoseBush: Block? =
register( register(

View file

@ -30,7 +30,7 @@ object RosesBlocks {
AbstractBlock.Settings.copy(Blocks.POTTED_POPPY), AbstractBlock.Settings.copy(Blocks.POTTED_POPPY),
), ),
"potted_rose", "potted_rose",
true, false,
) )
val cyanRoseFlower: Block? = val cyanRoseFlower: Block? =
register( register(
@ -49,7 +49,7 @@ object RosesBlocks {
AbstractBlock.Settings.copy(Blocks.POTTED_POPPY), AbstractBlock.Settings.copy(Blocks.POTTED_POPPY),
), ),
"potted_cyan", "potted_cyan",
true, false,
) )
val cyanRoseBush: Block? = val cyanRoseBush: Block? =
register( register(

View file

@ -36,7 +36,7 @@ object RosesBlocks {
.registryKey(RegistryKey.of(RegistryKeys.BLOCK, Identifier.of(MOD_ID, "potted_rose"))), .registryKey(RegistryKey.of(RegistryKeys.BLOCK, Identifier.of(MOD_ID, "potted_rose"))),
), ),
"potted_rose", "potted_rose",
true, false,
) )
val cyanRoseFlower: Block = val cyanRoseFlower: Block =
register( register(
@ -59,7 +59,7 @@ object RosesBlocks {
.registryKey(RegistryKey.of(RegistryKeys.BLOCK, Identifier.of(MOD_ID, "potted_cyan"))), .registryKey(RegistryKey.of(RegistryKeys.BLOCK, Identifier.of(MOD_ID, "potted_cyan"))),
), ),
"potted_cyan", "potted_cyan",
true, false,
) )
val cyanRoseBush: Block = val cyanRoseBush: Block =
register( register(

View file

@ -18,6 +18,10 @@ This mod brings back the classic roses and other classic flowers to minecraft, w
- Bees can pollinate all flowers - Bees can pollinate all flowers
<!-- modrinth_exclude.end --> <!-- modrinth_exclude.end -->
## Versioning
1.0: where the first number is the grander version (all mc versions will have the same),
second number is specific mc version patch
## Building ## Building
This is a multi-module gradle project, each version set has its own submodule, This is a multi-module gradle project, each version set has its own submodule,