FTBTeam / FTB-Modpack-Issues

Any and all FTB Modpack issues are here! Please create a new issue, add to an existing one or maybe even suggest a feature in the discussions
https://feed-the-beast.com/modpack
39 stars 11 forks source link

Grains of Infinity are not spawning #4586

Closed DW-Hanson closed 3 months ago

DW-Hanson commented 8 months ago

Modpack

FTB Presents Direwolf20 1.20

Modpack version

1.12

Log Files

No response

Describe the bug

Can't get Grains of Infinity to spawn from lighting bedrock on fire. I'm having the issue on a server and in solo creative mode.

Steps to reproduce

  1. Light bedrock on fire
  2. Nothing happens after it goes out.

Expected behaviour

A 50% chance to spawn Grains of Infinity

Screenshots

No response

Additional information

No response

DW-Hanson commented 8 months ago

I rolled back to 1.11 and it works so it's the latest 1.12 update

Suni-Shinobi commented 8 months ago

having flint and deepslate clicking on grinding stone or obsidian still works

JoschiZ commented 8 months ago

This may be related to a bug between The Aether and EnderIO that is tracked on the EnderIO side here https://github.com/Team-EnderIO/EnderIO/issues/603 and doesn't seem to be tracked in the Aether side right now,

KABLUEE2 commented 8 months ago

having flint and deepslate clicking on grinding stone or obsidian still works

Even this doesn't work in my custom pack

JoschiZ commented 7 months ago

I added a new recipe to work around this for now.

scripts/recipes.zs (or even better create a new my_fixes.zs file in in scripts)

A variant that would add a simple smelt of redstone to grains.

furnace.addRecipe("grains_of_infinity_custom", <item:enderio:grains_of_infinity>, <item:minecraft:redstone>, 0, 400);

Or another version that adds a craft. Costing redstone and 2 health off of an flint.

craftingTable.addShapeless("convert_redstone_to_grains", <item:enderio:grains_of_infinity>, [<item:minecraft:flint_and_steel>.anyDamage().reuse().transformDamage(2), <item:minecraft:redstone>]);

For some reason I liked the idea of redstone, but you can obviously use whatever you want.

KABLUEE2 commented 7 months ago

The above comment by @JoschiZ solved it for me and is a perfect work around. Thank you so much for this

krumble1 commented 7 months ago

Looks like @Techjar created a fix for this that was just merged into EnderIO, but while we wait for the release with that fix, here's another idea for an alternate crafting recipe for grains of infinity. Happy to hear any thoughts on this, positive or negative.