Skip to content

Commit

Permalink
Version 0.0.1
Browse files Browse the repository at this point in the history
Added Fox Plush.

Current issues:
-Hotbar icon needs rotation.
-In-hand item optionally needs to be rotated
-Block Break Particle missing texture
  • Loading branch information
QueenEllivair committed Jan 16, 2025
1 parent d716866 commit c984514
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/dev/queenellivair/plushies/item/ModBlocks.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import dev.queenellivair.plushies.ElliesVanillaPlushies;

import net.fabricmc.fabric.api.itemgroup.v1.FabricItemGroup;
import net.fabricmc.fabric.api.itemgroup.v1.ItemGroupEvents;
import net.minecraft.block.AbstractBlock;
import net.minecraft.block.Block;
import net.minecraft.block.Blocks;
Expand Down Expand Up @@ -43,7 +42,7 @@ public static Block register(Block block, String name, boolean shouldRegisterIte
.build();

public static final Block FOX_PLUSH = register(
new Block(AbstractBlock.Settings.copy(Blocks.WHITE_WOOL).sounds(BlockSoundGroup.WOOL)),
new Block(AbstractBlock.Settings.copy(Blocks.WHITE_WOOL).sounds(BlockSoundGroup.WOOL).nonOpaque()),
"fox_plush",
true
);
Expand Down

0 comments on commit c984514

Please sign in to comment.