fix potion overlay

This commit is contained in:
Sen 2025-06-21 20:25:12 +02:00
parent 8c44c024ab
commit e24794aa84
Signed by: sen
GPG key ID: 3AC50A6F47D1B722

View file

@ -358,6 +358,6 @@ public class ItemPotion extends Item
}
public Model getModel(ModelProvider provider, String name) {
return provider.getModel(this.getTransform(), "potion_overlay");
return provider.getModel(this.getTransform(), "potion_overlay", this.isSplashPotion() ? "potion_bottle_splash" : "potion_bottle_drinkable");
}
}