aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTec <daniel112092@gmail.com>2020-04-26 08:27:32 +0200
committerTec <daniel112092@gmail.com>2020-04-26 08:27:32 +0200
commit1522dceb7629b3026e3c4506305d7d1f8708527c (patch)
tree6d7b138a5b93e5d4ef5d4e631964b7e4231a5252
parent0c35badc49defc7bd7f76f763aa0a86bd9e7be64 (diff)
downloadGT5-Unofficial-1522dceb7629b3026e3c4506305d7d1f8708527c.tar.gz
GT5-Unofficial-1522dceb7629b3026e3c4506305d7d1f8708527c.tar.bz2
GT5-Unofficial-1522dceb7629b3026e3c4506305d7d1f8708527c.zip
add some doc
-rw-r--r--src/main/java/com/github/technus/tectech/mechanics/structure/IBlockAdder.java2
-rw-r--r--src/main/java/com/github/technus/tectech/mechanics/structure/IHatchAdder.java2
-rw-r--r--src/main/java/com/github/technus/tectech/mechanics/structure/ITileAdder.java2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/com/github/technus/tectech/mechanics/structure/IBlockAdder.java b/src/main/java/com/github/technus/tectech/mechanics/structure/IBlockAdder.java
index 85d6f1be3f..21841fc380 100644
--- a/src/main/java/com/github/technus/tectech/mechanics/structure/IBlockAdder.java
+++ b/src/main/java/com/github/technus/tectech/mechanics/structure/IBlockAdder.java
@@ -5,7 +5,7 @@ import net.minecraft.block.Block;
public interface IBlockAdder<T> {
/**
- * Callback on block added
+ * Callback on block added, needs to check if block is valid (and add it)
* @param block block attempted to add
* @param meta meta of block attempted to add
* @return is structure still valid
diff --git a/src/main/java/com/github/technus/tectech/mechanics/structure/IHatchAdder.java b/src/main/java/com/github/technus/tectech/mechanics/structure/IHatchAdder.java
index 6e5aca5be3..0666e3f214 100644
--- a/src/main/java/com/github/technus/tectech/mechanics/structure/IHatchAdder.java
+++ b/src/main/java/com/github/technus/tectech/mechanics/structure/IHatchAdder.java
@@ -5,7 +5,7 @@ import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
public interface IHatchAdder<T> {
/**
- * Callback to add hatch
+ * Callback to add hatch, needs to check if hatch is valid (and add it)
* @param iGregTechTileEntity hatch
* @param aShort requested texture index, or null if not...
* @return managed to add hatch (structure still valid)
diff --git a/src/main/java/com/github/technus/tectech/mechanics/structure/ITileAdder.java b/src/main/java/com/github/technus/tectech/mechanics/structure/ITileAdder.java
index bdb619984a..2af878c79e 100644
--- a/src/main/java/com/github/technus/tectech/mechanics/structure/ITileAdder.java
+++ b/src/main/java/com/github/technus/tectech/mechanics/structure/ITileAdder.java
@@ -4,7 +4,7 @@ import net.minecraft.tileentity.TileEntity;
public interface ITileAdder<T> {
/**
- * Callback to add hatch
+ * Callback to add hatch, needs to check if tile is valid (and add it)
* @param tileEntity tile
* @return managed to add hatch (structure still valid)
*/