Minor string changes

This commit is contained in:
Technus 2016-11-25 09:55:53 +01:00
parent 9bc3ea63dd
commit 3425da9e12
2 changed files with 2 additions and 2 deletions

View file

@ -284,7 +284,7 @@ public class GregTech_API {
* You should call @causeMachineUpdate in @Block.breakBlock and in @Block.onBlockAdded of your registered Block. * You should call @causeMachineUpdate in @Block.breakBlock and in @Block.onBlockAdded of your registered Block.
* You don't need to register TileEntities which implement @IMachineBlockUpdateable * You don't need to register TileEntities which implement @IMachineBlockUpdateable
* *
* @param aID the ID of your Block * @param aBlock the Block
* @param aMeta the Metadata of the Blocks as Bitmask! -1 or ~0 for all Metavalues * @param aMeta the Metadata of the Blocks as Bitmask! -1 or ~0 for all Metavalues
*/ */
public static boolean registerMachineBlock(Block aBlock, int aMeta) { public static boolean registerMachineBlock(Block aBlock, int aMeta) {

View file

@ -67,7 +67,7 @@ public class GT_Cover_SolarPanel
return true; return true;
} }
} }
GT_Utility.sendChatToPlayer(aPlayer,"You need water bucket in inventory to clean the panel with hand."); GT_Utility.sendChatToPlayer(aPlayer,"You need water bucket in inventory to clean the panel.");
return false; return false;
} }