Skip to content

Commit 8e5e67d

Browse files
committed
Fix issues with Slabs and Stairs
Fix sound issues with stairs, add stonecutting recipe for both
1 parent 4f34d5a commit 8e5e67d

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx1G
88
loader_version=0.15.7
99

1010
# Mod Properties
11-
mod_version = 1.2-1.20
11+
mod_version = 1.3-1.20
1212
maven_group = cc.cassian
1313
archives_base_name = ultimate
1414

src/main/java/cc/cassian/ultimate/UltimateContentMod.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
public class UltimateContentMod implements ModInitializer {
2424

2525
public static final Block BOOK_BOX = new BookBoxBlock(FabricBlockSettings.create().strength(1.5f).sounds(BlockSoundGroup.WOOD).mapColor(MapColor.BROWN));
26-
public static final Block NETHERITE_STAIRS = new ModStairs(Blocks.NETHERITE_BLOCK.getDefaultState(),FabricBlockSettings.create().strength(3.0f));
26+
public static final Block NETHERITE_STAIRS = new ModStairs(Blocks.NETHERITE_BLOCK.getDefaultState(),FabricBlockSettings.copyOf(Blocks.NETHERITE_BLOCK).strength(3.0f));
2727
public static final Block NETHERITE_SLAB = new SlabBlock(FabricBlockSettings.copyOf(Blocks.NETHERITE_BLOCK));
2828
public static final Block CURSOR = new Block(FabricBlockSettings.create().strength(1.8f).mapColor(MapColor.GREEN).sounds(BlockSoundGroup.STONE));
2929
public static final Block ANT = new AntBlock(FabricBlockSettings.create().strength(-1f, 3600000.0f).mapColor(MapColor.WHITE).sounds(BlockSoundGroup.METAL).dropsNothing());
@@ -56,7 +56,6 @@ public void onInitialize() {
5656

5757
});
5858
ItemGroupEvents.modifyEntriesEvent(ItemGroups.FUNCTIONAL).register(content -> {
59-
content.addAfter(Items.BOOKSHELF, BOOK_BOX);
6059
content.addAfter(Items.LODESTONE, ANT);
6160

6261

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"type": "minecraft:stonecutting",
3+
"count": 2,
4+
"ingredient": {
5+
"item": "minecraft:netherite_block"
6+
},
7+
"result": "ultimate:netherite_slab"
8+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"type": "minecraft:stonecutting",
3+
"count": 1,
4+
"ingredient": {
5+
"item": "minecraft:netherite_block"
6+
},
7+
"result": "ultimate:netherite_stairs"
8+
}

0 commit comments

Comments
 (0)