Skip to content

Commit

Permalink
card deck blockitem now copies its properties from carpet
Browse files Browse the repository at this point in the history
(i forgor it was stone, which of course is really hard to break with bare hands)
  • Loading branch information
awakaxis committed Dec 17, 2024
1 parent 9bf71eb commit 6054219
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/awakaxis/uno/UNOBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
import net.minecraft.world.level.block.state.BlockBehaviour;

public class UNOBlocks {
public static final Block CARD_DECK = registerWithItem(new CardDeckBlock(BlockBehaviour.Properties.copy(Blocks.STONE)), "card_deck", new Item.Properties().stacksTo(1));
public static final Block CARD_DECK = registerWithItem(new CardDeckBlock(BlockBehaviour.Properties.copy(Blocks.BLACK_CARPET)), "card_deck", new Item.Properties().stacksTo(1));

private static Block registerWithItem(Block block, String id, Item.Properties properties) {
ResourceLocation resourceLocation = UNO.id(id);
Expand Down

0 comments on commit 6054219

Please sign in to comment.