Skip to content

Commit 2e65f63

Browse files
author
flatkat
committed
-Removed Ruby and Unknown Block from Creative Tab (still accessible through commands)
-Changed Creative Tab icon to Rose (currently broken due to Rose rendering not being finished yet)
1 parent ea2ce6b commit 2e65f63

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/main/java/net/flatkat/ancient_forgotten/item/ModItemGroups.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@ public class ModItemGroups {
1414
public static final ItemGroup ANCIENT_FORGOTTEN_GROUP = Registry.register(Registries.ITEM_GROUP,
1515
new Identifier(AncientAndForgotten.MOD_ID, "ancient_forgotten"),
1616
FabricItemGroup.builder().displayName(Text.translatable("itemgroup.ancient_forgotten"))
17-
.icon(() -> new ItemStack(ModItems.RUBY)).entries((displayContext, entries) -> {
18-
entries.add(ModItems.RUBY);
19-
entries.add(ModBlocks.UNKNOWN_BLOCK);
17+
.icon(() -> new ItemStack(ModBlocks.ROSE)).entries((displayContext, entries) -> {
2018
entries.add(ModBlocks.ROSE);
2119
}).build());
2220

0 commit comments

Comments
 (0)