Skip to content

Commit

Permalink
Fixed #47
Browse files Browse the repository at this point in the history
- Fixed #47: Dark amaranth wart blocks are not available through the creative inventory
  • Loading branch information
Hugman76 committed Dec 21, 2021
1 parent 9aeac6b commit acdc2bc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
modImplementation "net.fabricmc:fabric-loader:${loader_version}"
modImplementation "net.fabricmc.fabric-api:fabric-api:${fabric_version}"

modApi "com.github.DawnTeamMC:DawnAPI:${dawn_version}"
modApi "com.github.DawnTeamMC:DawnAPI:v${dawn_version}"

compileOnly "com.google.code.findbugs:jsr305:3.0.2"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ yarn_mappings=1.18.1+build.7
loader_version=0.12.12
fabric_version=0.44.0+1.18
# https://github.com/DawnTeamMC/DawnAPI
dawn_version=042291e
dawn_version=3.2.0
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

public class AmaranthBundle extends PromenadeBundle {
public static final Block BLACK_DYLIUM = add(new BlockCreator.Builder("black_dylium", new DyliumBlock(FabricBlockSettings.of(Material.STONE, MapColor.DULL_RED).requiresTool().strength(3.0F, 9.0F).sounds(BlockSoundGroup.NYLIUM).ticksRandomly())).itemGroup(ItemGroup.BUILDING_BLOCKS).build());
public static final Block DARK_AMARANTH_WART_BLOCK = add(new BlockCreator.Builder("dark_amaranth_wart_block", new Block(FabricBlockSettings.of(Material.SOLID_ORGANIC, MapColor.BRIGHT_TEAL).strength(1.0F).sounds(BlockSoundGroup.WART_BLOCK))).build());
public static final Block DARK_AMARANTH_WART_BLOCK = add(new BlockCreator.Builder("dark_amaranth_wart_block", new Block(FabricBlockSettings.of(Material.SOLID_ORGANIC, MapColor.BRIGHT_TEAL).strength(1.0F).sounds(BlockSoundGroup.WART_BLOCK))).itemGroup(ItemGroup.BUILDING_BLOCKS).build());
public static final Block DARK_AMARANTH_ROOTS = add(new BlockCreator.Builder("dark_amaranth_roots", new RootsBlock(FabricBlockSettings.of(Material.REPLACEABLE_PLANT, MapColor.CYAN).noCollision().breakInstantly().sounds(BlockSoundGroup.ROOTS))).itemGroup(ItemGroup.DECORATIONS).render(BlockCreator.Render.CUTOUT).compostingChance(0.65F).build());
public static final NetherWoodBundle DARK_AMARANTH_WOOD = creator(new NetherWoodBundle.Builder("dark_amaranth", () -> Features.Configured.AMARANTH_FUNGUS_PLANTED, MapColor.LIGHT_GRAY, MapColor.DARK_DULL_PINK).build());

Expand Down

0 comments on commit acdc2bc

Please sign in to comment.