Skip to content

Commit 578170d

Browse files
committed
Release 1.20.1 - 2.1.3
1 parent 1fbaaea commit 578170d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

forge/src/main/java/whocraft/tardis_refined/common/data/ProviderBlockTags.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package whocraft.tardis_refined.common.data;
22

3-
import com.simibubi.create.content.decoration.palettes.GlassPaneBlock;
43
import net.minecraft.core.HolderLookup;
54
import net.minecraft.data.PackOutput;
65
import net.minecraft.resources.ResourceKey;
@@ -97,7 +96,7 @@ protected void addTags(HolderLookup.Provider provider) {
9796
Set<Block> glassBlocks = new HashSet<>();
9897
ManipulatorRecipes.MANIPULATOR_CRAFTING_RECIPES.forEach((resourceLocation, manipulatorCraftingRecipe) -> {
9998
for (ManipulatorCraftingIngredient ingredient : manipulatorCraftingRecipe.ingredients()) {
100-
if(ingredient.inputBlockState().getBlock() instanceof GlassBlock || ingredient.inputBlockState().getBlock() instanceof GlassPaneBlock || ingredient.inputBlockState().getBlock() instanceof GlassPaneBlock) {
99+
if (ingredient.inputBlockState().getBlock() instanceof GlassBlock || ingredient.inputBlockState().getBlock() instanceof AbstractGlassBlock || ingredient.inputBlockState().getBlock() instanceof StainedGlassBlock) {
101100
glassBlocks.add(ingredient.inputBlockState().getBlock());
102101
}
103102
}

0 commit comments

Comments
 (0)