Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package sometimesHardcoreSometimes;
- import net.minecraft.nbt.NBTTagCompound;
- import net.minecraft.tileentity.TileEntity;
- public class TileEntitySapphireCrop extends TileEntity
- {
- int bAmt;
- public TileEntitySapphireCrop()
- {
- this.bAmt = 14;
- }
- public int getBerryAmount()
- {
- return bAmt;
- }
- public void setBerryAmount(int that)
- {
- this.bAmt = that;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment