mirror of
https://github.com/smartcmd/MinecraftConsoles.git
synced 2026-04-24 07:56:30 +00:00
44 lines
717 B
C++
44 lines
717 B
C++
#include "stdafx.h"
|
|
#include "net.minecraft.world.h"
|
|
#include "net.minecraft.world.item.h"
|
|
#include "CarrotTile.h"
|
|
|
|
CarrotTile::CarrotTile(int id) : CropTile(id)
|
|
{
|
|
stages = 4;
|
|
}
|
|
|
|
Icon *CarrotTile::getTexture(int face, int data)
|
|
{
|
|
if (data < 7)
|
|
{
|
|
if (data == 6)
|
|
{
|
|
data = 5;
|
|
}
|
|
return icons[data >> 1];
|
|
}
|
|
else
|
|
{
|
|
return icons[3];
|
|
}
|
|
}
|
|
|
|
int CarrotTile::getBaseSeedId()
|
|
{
|
|
return Item::carrots_Id;
|
|
}
|
|
|
|
int CarrotTile::getBasePlantId()
|
|
{
|
|
return Item::carrots_Id;
|
|
}
|
|
|
|
// updated base crop to be consistent
|
|
//void CarrotTile::registerIcons(IconRegister *iconRegister)
|
|
//{
|
|
// for (int i = 0; i < 4; i++)
|
|
// {
|
|
// icons[i] = iconRegister->registerIcon(getIconName() + L"_stage_" + std::to_wstring(i));
|
|
// }
|
|
//}
|