Botania

Botania

145M Downloads

brewFlask&brewVial registry changed form Item to BaseBrewItem breaks the compatibility in 1.20.1 449

Lounode opened this issue ยท 0 comments

commented

Mod Loader

Forge

Minecraft Version

1.20.1

Botania version

1.20.1-449

Modloader version

Forge 47.4.0

Modpack info

No response

The latest.log file

https://pastebin.com/uQbpHMCc

Issue description

Commit 6c4c1de changed brewFlask in BotaniaItems from Item to BaseBrewItem

This breaks the compatibility which mod that compiled before 449

This forces the mod to be recompiled in version 449 to adapt to the update witch is annoying

public static final Item brewVial = make(prefix(LibItemNames.BREW_VIAL), new BaseBrewItem(unstackable(), 4, 32, () -> vial));
public static final Item brewFlask = make(prefix(LibItemNames.BREW_FLASK), new BaseBrewItem(unstackable(), 6, 24, () -> flask));

public static final BaseBrewItem brewVial = make(prefix(LibItemNames.BREW_VIAL), new BaseBrewItem(unstackable(), 4, 32, () -> vial));
public static final BaseBrewItem brewFlask = make(prefix(LibItemNames.BREW_FLASK), new BaseBrewItem(unstackable(), 6, 24, () -> flask));

Steps to reproduce

No response

Other information

No response