#1034: Fix exception on init of CraftCreativeCategory

This commit is contained in:
Parker Hawke 2022-03-19 09:59:56 +11:00 committed by md_5
parent f48739cae8
commit c269824921
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -12,8 +12,7 @@ public final class CraftCreativeCategory {
.put(CreativeModeTab.TAB_DECORATIONS, CreativeCategory.DECORATIONS)
.put(CreativeModeTab.TAB_REDSTONE, CreativeCategory.REDSTONE)
.put(CreativeModeTab.TAB_TRANSPORTATION, CreativeCategory.TRANSPORTATION)
.put(CreativeModeTab.TAB_MISC, CreativeCategory.MISC) // Interchangeable in NMS
.put(CreativeModeTab.TAB_MATERIALS, CreativeCategory.MISC) // Interchangeable in NMS
.put(CreativeModeTab.TAB_MISC, CreativeCategory.MISC) // Interchangeable with TAB_MATERIALS, same instance
.put(CreativeModeTab.TAB_FOOD, CreativeCategory.FOOD)
.put(CreativeModeTab.TAB_TOOLS, CreativeCategory.TOOLS)
.put(CreativeModeTab.TAB_COMBAT, CreativeCategory.COMBAT)