Renamed items, added back waila.

This commit is contained in:
Sebastian Hartte
2020-06-09 18:16:40 +02:00
parent 0f41d4b60c
commit e1b66a2a1c
102 changed files with 8728 additions and 6755 deletions
@@ -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.
*
+1 -1
View File
@@ -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
*/