mrh0 / createaddition

Create Crafts & Additions, Addon to the Create mod by the Create Team.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Liquid Blaze Burners hold wrong amount of liquid

KonSola5 opened this issue · comments

Describe the bug

Liquid Blaze Burners hold 4000... droplets. (Fabric uses Droplets, 1 bucket = 81000 droplets).

burner

It's probably an oversight when porting the mod from Forge to Fabric:

protected SmartFluidTank createInventory() {
return new SmartFluidTank(4000, this::onFluidStackChanged);
}

To Reproduce

Steps to reproduce the behavior:

  1. Equip Engineer's Goggles.
  2. Give a Blaze Burner a Straw.
  3. Watch the tank capacity being "49 mB" or "4000 Droplets".

Additional context

  • Mod version: v20230704a
  • Fabric version: 0.15.1
  • Create version: v0.5.1-b-build.1088+mc1.18.2

I already fixed that