Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
483 B · 16 lines
C++
at master
12345678910111213141516#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);}
shared_ptr<ItemInstance> BowlFoodItem::useTimeDepleted(shared_ptr<ItemInstance> instance, Level *level, shared_ptr<Player> player){ FoodItem::useTimeDepleted(instance, level, player);
return shared_ptr<ItemInstance>(new ItemInstance(Item::bowl));}