Normalized code formatting.

This commit is contained in:
WayofTime 2016-03-16 18:41:06 -04:00
parent b1db7c5152
commit 134b11f177
122 changed files with 944 additions and 697 deletions

View file

@ -9,26 +9,26 @@ import net.minecraft.item.ItemStack;
public interface IBindable
{
/**
* Gets the username of the Item's owner. Usually for display,
* such as in the tooltip.
*
* Gets the username of the Item's owner. Usually for display, such as in
* the tooltip.
*
* If the item is not bound, this will be null.
*
*
* @param stack
* - The owned ItemStack
*
*
* @return - The username of the Item's owner
*/
String getOwnerName(ItemStack stack);
/**
* Gets the UUID of the Item's owner.
*
*
* If the item is not bound, this will be null.
*
*
* @param stack
* - The owned ItemStack
*
*
* @return - The UUID of the Item's owner
*/
String getOwnerUUID(ItemStack stack);

View file

@ -10,20 +10,20 @@ import WayofTime.bloodmagic.api.BlockStack;
public interface IHarvestHandler
{
/**
* Called whenever the Harvest Ritual attempts to harvest a block.
* <br>
* Use this to break the block, plant a new one, and drop the produced items.
* <br>
* Make sure to do checks so you are certain the blocks being handled
* are the block types you want.
*
* Called whenever the Harvest Ritual attempts to harvest a block. <br>
* Use this to break the block, plant a new one, and drop the produced
* items. <br>
* Make sure to do checks so you are certain the blocks being handled are
* the block types you want.
*
* @param world
* - The world the {@link WayofTime.bloodmagic.api.ritual.IMasterRitualStone} is in.
* - The world the
* {@link WayofTime.bloodmagic.api.ritual.IMasterRitualStone} is in.
* @param pos
* - The position of the Block being checked
* - The position of the Block being checked
* @param blockStack
* - The Block being checked
*
* - The Block being checked
*
* @return If the block was successfully harvested.
*/
boolean harvestAndPlant(World world, BlockPos pos, BlockStack blockStack);

View file

@ -1,8 +1,8 @@
package WayofTime.bloodmagic.api.iface;
/**
* Held items that implement this will cause the beams between
* routing nodes to render.
* Held items that implement this will cause the beams between routing nodes to
* render.
*/
public interface INodeRenderer
{