Renamed items, added back waila.
This commit is contained in:
@@ -33,7 +33,7 @@ public interface IGridStorage
|
||||
{
|
||||
|
||||
/**
|
||||
* @return an NBTTagCompound that can be read, and written too.
|
||||
* @return an CompoundNBT that can be read, and written too.
|
||||
*/
|
||||
@Nonnull
|
||||
CompoundNBT dataObject();
|
||||
|
||||
@@ -34,7 +34,7 @@ import net.minecraft.entity.player.PlayerEntity;
|
||||
/**
|
||||
* The source of any action.
|
||||
*
|
||||
* This can either be a {@link EntityPlayer} or an {@link IActionHost}.
|
||||
* This can either be a {@link PlayerEntity} or an {@link IActionHost}.
|
||||
*
|
||||
* In most cases this is used for security checks, but can be used to validate the source itself.
|
||||
*
|
||||
|
||||
@@ -42,7 +42,7 @@ import net.minecraft.item.ItemStack;
|
||||
* <code>
|
||||
*
|
||||
* {@literal @}Override
|
||||
* public default ActionResultType onItemUse(ItemStack is, EntityPlayer player, World world, BlockPos pos, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ)
|
||||
* public default ActionResultType onItemUse(ItemStack is, PlayerEntity player, World world, BlockPos pos, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ)
|
||||
* {
|
||||
* return Api.INSTANCE.partHelper().placeBus( is, pos, side, player, hand, world );
|
||||
* }
|
||||
|
||||
@@ -125,7 +125,7 @@ public interface IAEStack<T extends IAEStack<T>>
|
||||
void decCountRequestable( long i );
|
||||
|
||||
/**
|
||||
* write to a NBTTagCompound.
|
||||
* write to a CompoundNBT.
|
||||
*
|
||||
* @param i to be written data
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user