ModTweaker

ModTweaker

88M Downloads

[Bug] Removing Crucible Furnace's Liquid Fuel & Solid Fuel doesn't work

Yulife opened this issue ยท 4 comments

commented

Using this script lava is supposed to be removed from the fuel sources, thus it should no longer heat the Crucible Furnace if the lava is in the Fluid Tank under the Crucible Furnace. However, that does not work. It throws no error, just doesn't work.
2015-01-31_11 37 31
2015-01-31_11 37 43

The code says this:

@ZenMethod
public static void removeFuel(ILiquidStack fuel) {
MineTweakerAPI.apply(new RemoveFuel(fuel));
}

@joshiejack is "ILiquidStack fuel" connected to the tank with the fuel under the Crucible or is it something different?

commented

You can't remove lava that way because it's add as a string "lava" not as a fluid.

commented

Mhm, this doesn't seem to work either. The string-oredictionary-removal works, though!

commented

yes

commented

So it does not accept "liquid:[liquidname" but rather a "[liquidstringname]" embedded in the code?