2026-03-01 12:16:08 +08:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "net.minecraft.world.entity.player.h"
|
|
|
|
|
#include "ItemInstance.h"
|
|
|
|
|
#include "BowlFoodItem.h"
|
|
|
|
|
|
|
|
|
|
BowlFoodItem::BowlFoodItem(int id, int nutrition) : FoodItem( id, nutrition, false )
|
|
|
|
|
{
|
|
|
|
|
setMaxStackSize(1);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-02 17:37:16 +07:00
|
|
|
shared_ptr<ItemInstance> BowlFoodItem::useTimeDepleted(shared_ptr<ItemInstance> instance, Level *level, shared_ptr<Player> player)
|
2026-03-01 12:16:08 +08:00
|
|
|
{
|
|
|
|
|
FoodItem::useTimeDepleted(instance, level, player);
|
|
|
|
|
|
2026-03-02 17:37:16 +07:00
|
|
|
return shared_ptr<ItemInstance>(new ItemInstance(Item::bowl));
|
2026-03-01 12:16:08 +08:00
|
|
|
}
|