diff --git a/src/main/java/gregtech/api/GregTech_API.java b/src/main/java/gregtech/api/GregTech_API.java index 9db617ef..820e48c7 100644 --- a/src/main/java/gregtech/api/GregTech_API.java +++ b/src/main/java/gregtech/api/GregTech_API.java @@ -284,7 +284,7 @@ public class GregTech_API { * 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 * - * @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 */ public static boolean registerMachineBlock(Block aBlock, int aMeta) { diff --git a/src/main/java/gregtech/common/covers/GT_Cover_SolarPanel.java b/src/main/java/gregtech/common/covers/GT_Cover_SolarPanel.java index 2ee68490..1b6a0e23 100644 --- a/src/main/java/gregtech/common/covers/GT_Cover_SolarPanel.java +++ b/src/main/java/gregtech/common/covers/GT_Cover_SolarPanel.java @@ -67,7 +67,7 @@ public class GT_Cover_SolarPanel 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; }