From 7019fe9025a6749eb5803c817321485829b3f0b1 Mon Sep 17 00:00:00 2001 From: DBotThePony Date: Tue, 27 Aug 2024 21:19:01 +0700 Subject: [PATCH] Replace "forge" tag namespace with "c" --- .../dbotthepony/mc/otm/registry/MBlockTags.kt | 78 ++++++------ .../dbotthepony/mc/otm/registry/MItemTags.kt | 116 +++++++++--------- 2 files changed, 97 insertions(+), 97 deletions(-) diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlockTags.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlockTags.kt index d0d8814b4..7f8323dc2 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlockTags.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MBlockTags.kt @@ -11,49 +11,49 @@ object MBlockTags { val CARGO_CRATES: TagKey = BlockTags.create(ResourceLocation(OverdriveThatMatters.MOD_ID, "cargo_crates")) val INDUSTRIAL_GLASS: TagKey = BlockTags.create(ResourceLocation(OverdriveThatMatters.MOD_ID, "industrial_glass")) - val CRAFTING_TABLES: TagKey = BlockTags.create(ResourceLocation("forge", "crafting_tables")) - val WORKBENCHES: TagKey = BlockTags.create(ResourceLocation("forge", "workbenches")) - val WORKBENCH: TagKey = BlockTags.create(ResourceLocation("forge", "workbench")) + val CRAFTING_TABLES: TagKey = BlockTags.create(ResourceLocation("c", "crafting_tables")) + val WORKBENCHES: TagKey = BlockTags.create(ResourceLocation("c", "workbenches")) + val WORKBENCH: TagKey = BlockTags.create(ResourceLocation("c", "workbench")) val REQUIRES_TRITANIUM_TOOL: TagKey = BlockTags.create(ResourceLocation("minecraft", "requires_tritanium_tool")) - val HARDENED_GLASS_PANES: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes")) - val HARDENED_GLASS_PANES_BLACK: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/black")) - val HARDENED_GLASS_PANES_BLUE: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/blue")) - val HARDENED_GLASS_PANES_BROWN: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/brown")) - val HARDENED_GLASS_PANES_COLORLESS: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/colorless")) - val HARDENED_GLASS_PANES_CYAN: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/cyan")) - val HARDENED_GLASS_PANES_GRAY: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/gray")) - val HARDENED_GLASS_PANES_GREEN: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/green")) - val HARDENED_GLASS_PANES_LIGHT_BLUE: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/light_blue")) - val HARDENED_GLASS_PANES_LIGHT_GRAY: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/light_gray")) - val HARDENED_GLASS_PANES_LIME: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/lime")) - val HARDENED_GLASS_PANES_MAGENTA: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/magenta")) - val HARDENED_GLASS_PANES_ORANGE: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/orange")) - val HARDENED_GLASS_PANES_PINK: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/pink")) - val HARDENED_GLASS_PANES_PURPLE: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/purple")) - val HARDENED_GLASS_PANES_RED: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/red")) - val HARDENED_GLASS_PANES_WHITE: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/white")) - val HARDENED_GLASS_PANES_YELLOW: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass_panes/yellow")) + val HARDENED_GLASS_PANES: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes")) + val HARDENED_GLASS_PANES_BLACK: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/black")) + val HARDENED_GLASS_PANES_BLUE: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/blue")) + val HARDENED_GLASS_PANES_BROWN: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/brown")) + val HARDENED_GLASS_PANES_COLORLESS: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/colorless")) + val HARDENED_GLASS_PANES_CYAN: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/cyan")) + val HARDENED_GLASS_PANES_GRAY: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/gray")) + val HARDENED_GLASS_PANES_GREEN: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/green")) + val HARDENED_GLASS_PANES_LIGHT_BLUE: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/light_blue")) + val HARDENED_GLASS_PANES_LIGHT_GRAY: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/light_gray")) + val HARDENED_GLASS_PANES_LIME: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/lime")) + val HARDENED_GLASS_PANES_MAGENTA: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/magenta")) + val HARDENED_GLASS_PANES_ORANGE: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/orange")) + val HARDENED_GLASS_PANES_PINK: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/pink")) + val HARDENED_GLASS_PANES_PURPLE: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/purple")) + val HARDENED_GLASS_PANES_RED: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/red")) + val HARDENED_GLASS_PANES_WHITE: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/white")) + val HARDENED_GLASS_PANES_YELLOW: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass_panes/yellow")) - val HARDENED_GLASS: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass")) - val HARDENED_GLASS_BLACK: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/black")) - val HARDENED_GLASS_BLUE: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/blue")) - val HARDENED_GLASS_BROWN: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/brown")) - val HARDENED_GLASS_COLORLESS: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/colorless")) - val HARDENED_GLASS_CYAN: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/cyan")) - val HARDENED_GLASS_GRAY: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/gray")) - val HARDENED_GLASS_GREEN: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/green")) - val HARDENED_GLASS_LIGHT_BLUE: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/light_blue")) - val HARDENED_GLASS_LIGHT_GRAY: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/light_gray")) - val HARDENED_GLASS_LIME: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/lime")) - val HARDENED_GLASS_MAGENTA: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/magenta")) - val HARDENED_GLASS_ORANGE: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/orange")) - val HARDENED_GLASS_PINK: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/pink")) - val HARDENED_GLASS_PURPLE: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/purple")) - val HARDENED_GLASS_RED: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/red")) - val HARDENED_GLASS_WHITE: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/white")) - val HARDENED_GLASS_YELLOW: TagKey = BlockTags.create(ResourceLocation("forge", "hardened_glass/yellow")) + val HARDENED_GLASS: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass")) + val HARDENED_GLASS_BLACK: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/black")) + val HARDENED_GLASS_BLUE: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/blue")) + val HARDENED_GLASS_BROWN: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/brown")) + val HARDENED_GLASS_COLORLESS: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/colorless")) + val HARDENED_GLASS_CYAN: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/cyan")) + val HARDENED_GLASS_GRAY: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/gray")) + val HARDENED_GLASS_GREEN: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/green")) + val HARDENED_GLASS_LIGHT_BLUE: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/light_blue")) + val HARDENED_GLASS_LIGHT_GRAY: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/light_gray")) + val HARDENED_GLASS_LIME: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/lime")) + val HARDENED_GLASS_MAGENTA: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/magenta")) + val HARDENED_GLASS_ORANGE: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/orange")) + val HARDENED_GLASS_PINK: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/pink")) + val HARDENED_GLASS_PURPLE: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/purple")) + val HARDENED_GLASS_RED: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/red")) + val HARDENED_GLASS_WHITE: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/white")) + val HARDENED_GLASS_YELLOW: TagKey = BlockTags.create(ResourceLocation("c", "hardened_glass/yellow")) val MACHINES: TagKey = BlockTags.create(ResourceLocation(OverdriveThatMatters.MOD_ID, "machines")) } diff --git a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItemTags.kt b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItemTags.kt index 3f04e15ad..21f1794f7 100644 --- a/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItemTags.kt +++ b/src/main/kotlin/ru/dbotthepony/mc/otm/registry/MItemTags.kt @@ -9,75 +9,75 @@ import ru.dbotthepony.mc.otm.core.ResourceLocation @Suppress("unused") object MItemTags { - val TRITANIUM_ORES: TagKey = ItemTags.create(ResourceLocation("forge", "ores/tritanium")) - val TRITANIUM_ORE_CLUMPS: TagKey = ItemTags.create(ResourceLocation("forge", "raw_materials/tritanium")) - val TRITANIUM_INGOTS: TagKey = ItemTags.create(ResourceLocation("forge", "ingots/tritanium")) - val TRITANIUM_NUGGETS: TagKey = ItemTags.create(ResourceLocation("forge", "nuggets/tritanium")) - val NUGGETS: TagKey = ItemTags.create(ResourceLocation("forge", "nuggets")) - val TRITANIUM_INGOTS_STORAGE: TagKey = ItemTags.create(ResourceLocation("forge", "storage_blocks/tritanium")) - val TRITANIUM_PLATES: TagKey = ItemTags.create(ResourceLocation("forge", "plates/tritanium")) - val CARBON_PLATES: TagKey = ItemTags.create(ResourceLocation("forge", "plates/carbon")) - val REINFORCED_TRITANIUM_PLATES: TagKey = ItemTags.create(ResourceLocation("forge", "reinforced_tritanium")) - val TRITANIUM_DUSTS: TagKey = ItemTags.create(ResourceLocation("forge", "dusts/tritanium")) - val IRON_PLATES: TagKey = ItemTags.create(ResourceLocation("forge", "plates/iron")) - val GOLD_PLATES: TagKey = ItemTags.create(ResourceLocation("forge", "plates/gold")) + val TRITANIUM_ORES: TagKey = ItemTags.create(ResourceLocation("c", "ores/tritanium")) + val TRITANIUM_ORE_CLUMPS: TagKey = ItemTags.create(ResourceLocation("c", "raw_materials/tritanium")) + val TRITANIUM_INGOTS: TagKey = ItemTags.create(ResourceLocation("c", "ingots/tritanium")) + val TRITANIUM_NUGGETS: TagKey = ItemTags.create(ResourceLocation("c", "nuggets/tritanium")) + val NUGGETS: TagKey = ItemTags.create(ResourceLocation("c", "nuggets")) + val TRITANIUM_INGOTS_STORAGE: TagKey = ItemTags.create(ResourceLocation("c", "storage_blocks/tritanium")) + val TRITANIUM_PLATES: TagKey = ItemTags.create(ResourceLocation("c", "plates/tritanium")) + val CARBON_PLATES: TagKey = ItemTags.create(ResourceLocation("c", "plates/carbon")) + val REINFORCED_TRITANIUM_PLATES: TagKey = ItemTags.create(ResourceLocation("c", "reinforced_tritanium")) + val TRITANIUM_DUSTS: TagKey = ItemTags.create(ResourceLocation("c", "dusts/tritanium")) + val IRON_PLATES: TagKey = ItemTags.create(ResourceLocation("c", "plates/iron")) + val GOLD_PLATES: TagKey = ItemTags.create(ResourceLocation("c", "plates/gold")) val CARGO_CRATES: TagKey = ItemTags.create(ResourceLocation(OverdriveThatMatters.MOD_ID, "cargo_crates")) val MINECART_CARGO_CRATES: TagKey = ItemTags.create(ResourceLocation(OverdriveThatMatters.MOD_ID, "minecart_cargo_crates")) val INDUSTRIAL_GLASS: TagKey = ItemTags.create(ResourceLocation(OverdriveThatMatters.MOD_ID, "industrial_glass")) val UPGRADES: TagKey = ItemTags.create(ResourceLocation(OverdriveThatMatters.MOD_ID, "upgrades")) - val CRAFTING_TABLES: TagKey = ItemTags.create(ResourceLocation("forge", "crafting_tables")) - val WORKBENCHES: TagKey = ItemTags.create(ResourceLocation("forge", "workbenches")) - val WORKBENCH: TagKey = ItemTags.create(ResourceLocation("forge", "workbench")) + val CRAFTING_TABLES: TagKey = ItemTags.create(ResourceLocation("c", "crafting_tables")) + val WORKBENCHES: TagKey = ItemTags.create(ResourceLocation("c", "workbenches")) + val WORKBENCH: TagKey = ItemTags.create(ResourceLocation("c", "workbench")) - val BASIC_CIRCUIT: TagKey = ItemTags.create(ResourceLocation("forge", "circuits/basic")) - val ADVANCED_CIRCUIT: TagKey = ItemTags.create(ResourceLocation("forge", "circuits/advanced")) + val BASIC_CIRCUIT: TagKey = ItemTags.create(ResourceLocation("c", "circuits/basic")) + val ADVANCED_CIRCUIT: TagKey = ItemTags.create(ResourceLocation("c", "circuits/advanced")) - val COPPER_WIRES: TagKey = ItemTags.create(ResourceLocation("forge", "wires/copper")) - val GOLD_WIRES: TagKey = ItemTags.create(ResourceLocation("forge", "wires/gold")) + val COPPER_WIRES: TagKey = ItemTags.create(ResourceLocation("c", "wires/copper")) + val GOLD_WIRES: TagKey = ItemTags.create(ResourceLocation("c", "wires/gold")) - val PISTONS: TagKey = ItemTags.create(ResourceLocation("forge", "pistons")) - val FURNACES: TagKey = ItemTags.create(ResourceLocation("forge", "furnaces")) + val PISTONS: TagKey = ItemTags.create(ResourceLocation("c", "pistons")) + val FURNACES: TagKey = ItemTags.create(ResourceLocation("c", "furnaces")) - val TOOLS_HAMMERS: TagKey = ItemTags.create(ResourceLocation("forge", "tools/hammers")) + val TOOLS_HAMMERS: TagKey = ItemTags.create(ResourceLocation("c", "tools/hammers")) - val HARDENED_GLASS_PANES: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes")) - val HARDENED_GLASS_PANES_BLACK: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/black")) - val HARDENED_GLASS_PANES_BLUE: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/blue")) - val HARDENED_GLASS_PANES_BROWN: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/brown")) - val HARDENED_GLASS_PANES_COLORLESS: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/colorless")) - val HARDENED_GLASS_PANES_CYAN: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/cyan")) - val HARDENED_GLASS_PANES_GRAY: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/gray")) - val HARDENED_GLASS_PANES_GREEN: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/green")) - val HARDENED_GLASS_PANES_LIGHT_BLUE: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/light_blue")) - val HARDENED_GLASS_PANES_LIGHT_GRAY: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/light_gray")) - val HARDENED_GLASS_PANES_LIME: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/lime")) - val HARDENED_GLASS_PANES_MAGENTA: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/magenta")) - val HARDENED_GLASS_PANES_ORANGE: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/orange")) - val HARDENED_GLASS_PANES_PINK: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/pink")) - val HARDENED_GLASS_PANES_PURPLE: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/purple")) - val HARDENED_GLASS_PANES_RED: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/red")) - val HARDENED_GLASS_PANES_WHITE: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/white")) - val HARDENED_GLASS_PANES_YELLOW: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass_panes/yellow")) + val HARDENED_GLASS_PANES: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes")) + val HARDENED_GLASS_PANES_BLACK: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/black")) + val HARDENED_GLASS_PANES_BLUE: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/blue")) + val HARDENED_GLASS_PANES_BROWN: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/brown")) + val HARDENED_GLASS_PANES_COLORLESS: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/colorless")) + val HARDENED_GLASS_PANES_CYAN: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/cyan")) + val HARDENED_GLASS_PANES_GRAY: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/gray")) + val HARDENED_GLASS_PANES_GREEN: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/green")) + val HARDENED_GLASS_PANES_LIGHT_BLUE: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/light_blue")) + val HARDENED_GLASS_PANES_LIGHT_GRAY: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/light_gray")) + val HARDENED_GLASS_PANES_LIME: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/lime")) + val HARDENED_GLASS_PANES_MAGENTA: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/magenta")) + val HARDENED_GLASS_PANES_ORANGE: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/orange")) + val HARDENED_GLASS_PANES_PINK: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/pink")) + val HARDENED_GLASS_PANES_PURPLE: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/purple")) + val HARDENED_GLASS_PANES_RED: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/red")) + val HARDENED_GLASS_PANES_WHITE: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/white")) + val HARDENED_GLASS_PANES_YELLOW: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass_panes/yellow")) - val HARDENED_GLASS: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass")) - val HARDENED_GLASS_BLACK: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/black")) - val HARDENED_GLASS_BLUE: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/blue")) - val HARDENED_GLASS_BROWN: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/brown")) - val HARDENED_GLASS_COLORLESS: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/colorless")) - val HARDENED_GLASS_CYAN: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/cyan")) - val HARDENED_GLASS_GRAY: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/gray")) - val HARDENED_GLASS_GREEN: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/green")) - val HARDENED_GLASS_LIGHT_BLUE: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/light_blue")) - val HARDENED_GLASS_LIGHT_GRAY: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/light_gray")) - val HARDENED_GLASS_LIME: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/lime")) - val HARDENED_GLASS_MAGENTA: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/magenta")) - val HARDENED_GLASS_ORANGE: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/orange")) - val HARDENED_GLASS_PINK: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/pink")) - val HARDENED_GLASS_PURPLE: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/purple")) - val HARDENED_GLASS_RED: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/red")) - val HARDENED_GLASS_WHITE: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/white")) - val HARDENED_GLASS_YELLOW: TagKey = ItemTags.create(ResourceLocation("forge", "hardened_glass/yellow")) + val HARDENED_GLASS: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass")) + val HARDENED_GLASS_BLACK: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/black")) + val HARDENED_GLASS_BLUE: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/blue")) + val HARDENED_GLASS_BROWN: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/brown")) + val HARDENED_GLASS_COLORLESS: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/colorless")) + val HARDENED_GLASS_CYAN: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/cyan")) + val HARDENED_GLASS_GRAY: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/gray")) + val HARDENED_GLASS_GREEN: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/green")) + val HARDENED_GLASS_LIGHT_BLUE: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/light_blue")) + val HARDENED_GLASS_LIGHT_GRAY: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/light_gray")) + val HARDENED_GLASS_LIME: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/lime")) + val HARDENED_GLASS_MAGENTA: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/magenta")) + val HARDENED_GLASS_ORANGE: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/orange")) + val HARDENED_GLASS_PINK: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/pink")) + val HARDENED_GLASS_PURPLE: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/purple")) + val HARDENED_GLASS_RED: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/red")) + val HARDENED_GLASS_WHITE: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/white")) + val HARDENED_GLASS_YELLOW: TagKey = ItemTags.create(ResourceLocation("c", "hardened_glass/yellow")) val MACHINES: TagKey = ItemTags.create(ResourceLocation(OverdriveThatMatters.MOD_ID, "machines")) }