diff --git a/src/main/kotlin/gay/asoji/innerpastels/tags/InnerPastelsBlockTags.kt b/src/main/kotlin/gay/asoji/innerpastels/tags/InnerPastelsBlockTags.kt index ba8a7de9..350a9cd8 100644 --- a/src/main/kotlin/gay/asoji/innerpastels/tags/InnerPastelsBlockTags.kt +++ b/src/main/kotlin/gay/asoji/innerpastels/tags/InnerPastelsBlockTags.kt @@ -16,6 +16,7 @@ object InnerPastelsBlockTags { val FENCE_GATES: TagKey = TagKey.create(Registries.BLOCK, ResourceLocation("innerpastels:fence_gates")) val WALLS: TagKey = TagKey.create(Registries.BLOCK, ResourceLocation("innerpastels:walls")) val SLABS: TagKey = TagKey.create(Registries.BLOCK, ResourceLocation("innerpastels:slabs")) + val STAIRS: TagKey = TagKey.create(Registries.BLOCK, ResourceLocation("innerpastels:stairs")) val WOOLS: TagKey = TagKey.create(Registries.BLOCK, ResourceLocation("innerpastels:wools")) val LIGHTS: TagKey = TagKey.create(Registries.BLOCK, ResourceLocation("innerpastels:lights")) val CARPETS: TagKey = TagKey.create(Registries.BLOCK, ResourceLocation("innerpastels:carpets")) diff --git a/src/main/kotlin/gay/asoji/innerpastels/tags/InnerPastelsItemTags.kt b/src/main/kotlin/gay/asoji/innerpastels/tags/InnerPastelsItemTags.kt index 0dece5db..03bddd64 100644 --- a/src/main/kotlin/gay/asoji/innerpastels/tags/InnerPastelsItemTags.kt +++ b/src/main/kotlin/gay/asoji/innerpastels/tags/InnerPastelsItemTags.kt @@ -13,6 +13,7 @@ object InnerPastelsItemTags { val FENCE_GATES: TagKey = TagKey.create(Registries.ITEM, ResourceLocation("innerpastels:fence_gates")) val WALLS: TagKey = TagKey.create(Registries.ITEM, ResourceLocation("innerpastels:walls")) val SLABS: TagKey = TagKey.create(Registries.ITEM, ResourceLocation("innerpastels:slabs")) + val STAIRS: TagKey = TagKey.create(Registries.ITEM, ResourceLocation("innerpastels:stairs")) val WOOLS: TagKey = TagKey.create(Registries.ITEM, ResourceLocation("innerpastels:wools")) val LIGHTS: TagKey = TagKey.create(Registries.ITEM, ResourceLocation("innerpastels:lights")) val CARPETS: TagKey = TagKey.create(Registries.ITEM, ResourceLocation("innerpastels:carpets"))