GregTechCEu Modern

GregTechCEu Modern

6M Downloads

Glass recipe not showing up/present

Closed this issue ยท 4 comments

commented

Checked for existing issues

  • I have checked for existing issues, and have found none.

Tested latest version

  • I have checked that this occurs on the latest version.

GregTech CEu Version

v7.1.2-v7.1.0

Minecraft Version

1.20.1 Forge

Recipe Viewer Installed

JEI

Environment

Singleplayer

Cross-Mod Interaction

No

Other Installed Mods

-Jei
-GregTech CEu Modern
-Create (for liquid pumps, even without it the bug is still there)

Expected Behavior

Any type of sand would be able to be smelted in a minecraft/GTCEU Modern furnace/smelter

Actual Behavior

There are no recipes available for glass, and as far as my testing goes, there really are no recipes for glass

Steps to Reproduce

  1. Install mods
  2. launch minecraft
  3. Create new world
  4. put sand/glass dust into the smelter, it no work

Additional Information

idk whats wrongg
but i think it has to do with the mod code deleting the recipe accidentally
if this is an intended feature, do tell how do i make glass

Image Image Image Image Image Image Image Image
commented

After some digging, i found this:

    registry.accept(new ResourceLocation("minecraft:glass"));
    registry.accept(new ResourceLocation("minecraft:glass_bottle"));
    registry.accept(new ResourceLocation("minecraft:glass_pane"));
    for (DyeColor color : DyeColor.values()) {
      registry.accept(new ResourceLocation(String.format("minecraft:%s_stained_glass_pane_from_glass_pane", new Object[] { color
                .name().toLowerCase(Locale.ROOT) })));
      registry.accept(new ResourceLocation(
            String.format("minecraft:%s_stained_glass_pane", new Object[] { color.name().toLowerCase(Locale.ROOT) })));
    } 
    registry.accept(new ResourceLocation("minecraft:tinted_glass"));
  }

(found in com.gregtechceu.gtceu/data/recipe/configurable/RecipeRemoval.class at lines 259-270)

im guessing this is intentional, but jei doesnt show what you need to do to make the glass then?
i might change the type of this issue to something else

commented
Image

nevermind, its just me being a dumbass
sorry devs!

also anyone curious you need to put glass dust into a basic extractor
though jei doesnt show what you need to do, so ill live this post open still

commented

Removing the vanilla glass recipe is intentional. You can disable it by setting hardGlassRecipes: false in the config.

JEI not showing the recipe seems like a bug. It shows for me in EMI on 1.21.

commented

Removing the vanilla glass recipe is intentional. You can disable it by setting hardGlassRecipes: false in the config.

JEI not showing the recipe seems like a bug. It shows for me in EMI on 1.21.

I see
thank you! ill close the post then