Skip to content

Commit

Permalink
Added new blocks to bee plant registry
Browse files Browse the repository at this point in the history
  • Loading branch information
Roadhog360 committed Nov 22, 2023
1 parent cbdbad6 commit 3c0682d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion src/main/java/ganymedes01/etfuturum/api/BeePlantRegistry.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,21 @@ public static void init() {
addFlower(Blocks.double_plant, 5);

addFlower(ModBlocks.AZALEA.get(), 1);
//TODO: This should have flowering azalea leaves, cherry leaves, pink petals, mangrove propagules, and spore blossoms as flowers, when added
addFlower(ModBlocks.AZALEA.get(), 9);
addFlower(ModBlocks.AZALEA_LEAVES.get(), 1);
addFlower(ModBlocks.AZALEA_LEAVES.get(), 5);
addFlower(ModBlocks.AZALEA_LEAVES.get(), 9);
addFlower(ModBlocks.AZALEA_LEAVES.get(), 13);

addFlower(ModBlocks.SAPLING.get(), 0); //Mangrove propagule
addFlower(ModBlocks.SAPLING.get(), 8);

addFlower(ModBlocks.LEAVES.get(), 1); //Cherry leaves
addFlower(ModBlocks.LEAVES.get(), 5);
addFlower(ModBlocks.LEAVES.get(), 9);
addFlower(ModBlocks.LEAVES.get(), 13);

//TODO: This should have pink petals, and spore blossoms as flowers, when added
}
}
}

0 comments on commit 3c0682d

Please sign in to comment.