aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorGlease <4586901+Glease@users.noreply.github.com>2023-01-25 00:33:09 +0800
committerGlease <4586901+Glease@users.noreply.github.com>2023-01-25 00:33:09 +0800
commit334eba482dcc252b2a08294324f5498086c60738 (patch)
tree218dbf4c8be569b6003d1aa46727be5eb0451dbf /src/main
parentebc9b1fcde044cc31cf042d0a007c172585a154e (diff)
downloadGT5-Unofficial-334eba482dcc252b2a08294324f5498086c60738.tar.gz
GT5-Unofficial-334eba482dcc252b2a08294324f5498086c60738.tar.bz2
GT5-Unofficial-334eba482dcc252b2a08294324f5498086c60738.zip
add ggmark
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/net/glease/ggfab/GGConstants.java1
-rw-r--r--src/main/java/net/glease/ggfab/mte/MTE_LinkedInputBus.java4
2 files changed, 4 insertions, 1 deletions
diff --git a/src/main/java/net/glease/ggfab/GGConstants.java b/src/main/java/net/glease/ggfab/GGConstants.java
index 8b652d643b..ef8027bf92 100644
--- a/src/main/java/net/glease/ggfab/GGConstants.java
+++ b/src/main/java/net/glease/ggfab/GGConstants.java
@@ -8,4 +8,5 @@ public class GGConstants {
public static final String VERSION = "GRADLETOKEN_VERSION";
public static final String GGMARK = EnumChatFormatting.GOLD + "GigaGram" + EnumChatFormatting.RESET + "Fab";
+ public static final String GGMARK_TOOLTIP = "Added by "+ GGMARK;
}
diff --git a/src/main/java/net/glease/ggfab/mte/MTE_LinkedInputBus.java b/src/main/java/net/glease/ggfab/mte/MTE_LinkedInputBus.java
index 4ee9bdc940..d72b3166e5 100644
--- a/src/main/java/net/glease/ggfab/mte/MTE_LinkedInputBus.java
+++ b/src/main/java/net/glease/ggfab/mte/MTE_LinkedInputBus.java
@@ -16,6 +16,7 @@ import gregtech.api.metatileentity.MetaTileEntity;
import gregtech.api.metatileentity.implementations.GT_MetaTileEntity_Hatch_InputBus;
import gregtech.api.util.GT_OreDictUnificator;
import gregtech.api.util.GT_Utility;
+import net.glease.ggfab.GGConstants;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
@@ -40,7 +41,8 @@ public class MTE_LinkedInputBus extends GT_MetaTileEntity_Hatch_InputBus {
public MTE_LinkedInputBus(int id, String name, String nameRegional, int tier) {
super(id, name, nameRegional, tier, 1, new String[]{
SIZE_INVENTORY + " slot input bus linked together wirelessly",
- "Link does not cross world boundary"
+ "Link does not cross world boundary",
+ GGConstants.GGMARK_TOOLTIP,
});
}