diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-04-18 02:54:45 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-04-18 02:54:45 +1000 |
commit | 3213d80d50bf5f93ba94911a1d60cf78275db3af (patch) | |
tree | acc99fedac44271c0beb3088031ed00b211bf3f7 /src/Java/gtPlusPlus/xmod/gregtech/api | |
parent | cdb2e904920433a45937d0f8dddadea45bf0eb65 (diff) | |
download | GT5-Unofficial-3213d80d50bf5f93ba94911a1d60cf78275db3af.tar.gz GT5-Unofficial-3213d80d50bf5f93ba94911a1d60cf78275db3af.tar.bz2 GT5-Unofficial-3213d80d50bf5f93ba94911a1d60cf78275db3af.zip |
% Adjusted IDs on Heat Pipes.
$ Fixed formatting on Super Bus messages.
$ Fixed tiering of Simple Washers.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_SuperBus_Input.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_SuperBus_Input.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_SuperBus_Input.java index 5e41af86af..d6906c7b67 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_SuperBus_Input.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_SuperBus_Input.java @@ -187,7 +187,7 @@ public class GT_MetaTileEntity_SuperBus_Input extends GT_MetaTileEntity_Hatch_In if (s.startsWith(" ")) { s = s.substring(1); } - superString += (s+"\r\n"); + superString += (s+", "); } PlayerUtils.messagePlayer(aPlayer, superString); } |