Cracker's Wither Storm Mod

Cracker's Wither Storm Mod

5M Downloads

[Bug]: Using the Flint and Steel on a Formidibomb when Quad is installed turns the Formidibomb into primed vanilla TNT

pinkygrocket opened this issue ยท 8 comments

commented

Guidelines

  • By checking this box, I am saying that I have read the guidelines and believe to be following them to the best of my ability

Minecraft Version

1.20.1

Mod Version

4.2.1

Mod Loader

Forge

Mod Loader Version

47.3.10

Describe the bug

Manually lighting a Formidibomb with Flint and Steel spawns primed vanilla TNT, instead of shortening the existing fuse time. This forces the player to wait out the inventory fuse time.

Steps to Reproduce

  1. Place a Formidibomb in your inventory
  2. Place the Formidibomb
  3. Light it with Flint and Steel

Crash Reports/Logs

https://mclo.gs/IhZkl9h

Is OptiFine installed?

  • OptiFine is installed

Screenhots

No response

Mod List

modslist.txt

commented

With the amount of mods your using, good chance it's an incompatibility issue with something.

commented

Probably, the pains of packdevving. I'm going to do a little bit of testing this morning; my guess is that it's Elytra Bombing or Forgery.

commented

Yeah check to see if you can find the mod/combination of mods if possible since that would help out a lot

commented

I tracked it down to Quad. It has a mixin related to TNT that is probably the root of the issue: https://github.com/LieOnLion/Quad/blob/forge%2B1.20.4/src/main/java/io/github/lieonlion/quad/mixin/TntBlockMixin.java

commented

Thanks! I will investigate this further

commented

From my limited understanding of modding, it seems like the issue might be here
https://github.com/LieOnLion/Quad/blob/forge%2B1.20.4/src/main/java/io/github/lieonlion/quad/util/QuadUtil.java

AFAIK all Quad does is set the block's LIT state to true, so the issue likely lies with how CWSM handles the formidibomb lit state. I'll try forking quad and seeing if hardcoding a check for the formidibomb and using its different blockstates will fix anything.

commented

Yeah I forget how the Formidibomb works so I will have to investigate, thank you everyone for pointing out the problem