
Silken Tofu does not yield a bowl when consumed
ladenedge opened this issue ยท 1 comments
When I eat a silken tofu, the bowl is consumed along with the tofu. Based on the way other FD meals work, it seems like it should yield a bowl. It also looks like the code had this in mind:
public static final RegistryObject<Item> SILKEN_TOFU = ITEMS.register("silken_tofu",
() -> new Item(new Item.Properties().food(new FoodProperties.Builder()
.nutrition(4)
.saturationMod(0.4f)
.build())
.craftRemainder(Items.BUCKET)
.stacksTo(16)));
Note however that currently neither a bowl nor a bucket is remaindered.
In short: ideally I think we'd see a bowl pop out when silken tofu is consumed.