From 473b00a1e508d061a22a9752aace9a1d756f516b Mon Sep 17 00:00:00 2001 From: iouter <62897714+iouter@users.noreply.github.com> Date: Sat, 1 Oct 2022 16:52:30 +0800 Subject: no-more-duplicate-key (#381) --- .../xmod/gregtech/common/covers/GTPP_Cover_Overflow_Item.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/common/covers') diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/covers/GTPP_Cover_Overflow_Item.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/covers/GTPP_Cover_Overflow_Item.java index 16369f570f..46a6e9d600 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/covers/GTPP_Cover_Overflow_Item.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/covers/GTPP_Cover_Overflow_Item.java @@ -122,7 +122,7 @@ public class GTPP_Cover_Overflow_Item extends GT_CoverBehavior { aCoverVariable = mMaxItemCapacity; } GT_Utility.sendChatToPlayer( - aPlayer, LangUtils.trans("009", "Overflow point: ") + aCoverVariable + trans("010", "L")); + aPlayer, LangUtils.trans("322", "Overflow point: ") + aCoverVariable + trans("323", "L")); return aCoverVariable; } @@ -149,7 +149,7 @@ public class GTPP_Cover_Overflow_Item extends GT_CoverBehavior { aCoverVariable = mMaxItemCapacity; } GT_Utility.sendChatToPlayer( - aPlayer, LangUtils.trans("009", "Overflow point: ") + aCoverVariable + trans("010", "L")); + aPlayer, LangUtils.trans("322", "Overflow point: ") + aCoverVariable + trans("323", "L")); aTileEntity.setCoverDataAtSide(aSide, aCoverVariable); return true; } -- cgit