aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IDebugableTileEntity.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity/IDebugableTileEntity.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/tileentity/IDebugableTileEntity.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IDebugableTileEntity.java b/src/main/java/gregtech/api/interfaces/tileentity/IDebugableTileEntity.java
index 4e3b03d970..5208944d66 100644
--- a/src/main/java/gregtech/api/interfaces/tileentity/IDebugableTileEntity.java
+++ b/src/main/java/gregtech/api/interfaces/tileentity/IDebugableTileEntity.java
@@ -1,18 +1,17 @@
package gregtech.api.interfaces.tileentity;
import java.util.ArrayList;
+
import net.minecraft.entity.player.EntityPlayer;
public interface IDebugableTileEntity {
+
/**
* Returns a Debug Message, for a generic DebugItem
*
* @param aPlayer the Player, who rightclicked with his Debug Item
- * @param aLogLevel the Log Level of the Debug Item.
- * 0 = Obvious
- * 1 = Visible for the regular Scanner
- * 2 = Only visible to more advanced Scanners
- * 3 = Debug ONLY
+ * @param aLogLevel the Log Level of the Debug Item. 0 = Obvious 1 = Visible for the regular Scanner 2 = Only
+ * visible to more advanced Scanners 3 = Debug ONLY
* @return a String-Array containing the DebugInfo, every Index is a separate line (0 = first Line)
*/
ArrayList<String> getDebugInfo(EntityPlayer aPlayer, int aLogLevel);