From ad7f7b95550d8a27cc5cddc8c419898d8d836713 Mon Sep 17 00:00:00 2001 From: iouter <62897714+iouter@users.noreply.github.com> Date: Sat, 1 Oct 2022 16:52:15 +0800 Subject: no-more-duplicate-key (#1424) --- src/main/java/gregtech/nei/GT_NEI_AssLineHandler.java | 6 +++--- src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) (limited to 'src/main/java/gregtech/nei') diff --git a/src/main/java/gregtech/nei/GT_NEI_AssLineHandler.java b/src/main/java/gregtech/nei/GT_NEI_AssLineHandler.java index e75b5e3ad0..90b0532bbc 100644 --- a/src/main/java/gregtech/nei/GT_NEI_AssLineHandler.java +++ b/src/main/java/gregtech/nei/GT_NEI_AssLineHandler.java @@ -322,7 +322,7 @@ public class GT_NEI_AssLineHandler extends RecipeMapHandler { 10, y, EnumChatFormatting.ITALIC - + GT_Utility.trans("226", "Original Recipe by: ") + + GT_Utility.trans("273", "Original Recipe by: ") + recipe.owners.get(0).getName(), 0xFF000000); y += 10; @@ -331,7 +331,7 @@ public class GT_NEI_AssLineHandler extends RecipeMapHandler { 10, y, EnumChatFormatting.ITALIC - + GT_Utility.trans("227", "Modified by: ") + + GT_Utility.trans("274", "Modified by: ") + recipe.owners.get(i).getName(), 0xFF000000); y += 10; @@ -341,7 +341,7 @@ public class GT_NEI_AssLineHandler extends RecipeMapHandler { 10, y, EnumChatFormatting.ITALIC - + GT_Utility.trans("225", "Recipe by: ") + + GT_Utility.trans("272", "Recipe by: ") + recipe.owners.get(0).getName(), 0xFF000000); y += 10; diff --git a/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java b/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java index 1675c50b43..d5c59c61c6 100644 --- a/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java +++ b/src/main/java/gregtech/nei/GT_NEI_DefaultHandler.java @@ -394,7 +394,7 @@ public class GT_NEI_DefaultHandler extends RecipeMapHandler { originalPower.computePowerUsageAndDuration(recipe.mEUt, recipe.mDuration); drawLine( lineCounter, - GT_Utility.trans("228", "Original voltage: ") + originalPower.getVoltageString()); + GT_Utility.trans("275", "Original voltage: ") + originalPower.getVoltageString()); lineCounter++; } } @@ -452,14 +452,14 @@ public class GT_NEI_DefaultHandler extends RecipeMapHandler { drawLine( lineCounter, EnumChatFormatting.ITALIC - + GT_Utility.trans("226", "Original Recipe by: ") + + GT_Utility.trans("273", "Original Recipe by: ") + recipe.owners.get(0).getName()); lineCounter++; for (int i = 1; i < recipe.owners.size(); i++) { drawLine( lineCounter, EnumChatFormatting.ITALIC - + GT_Utility.trans("227", "Modified by: ") + + GT_Utility.trans("274", "Modified by: ") + recipe.owners.get(i).getName()); lineCounter++; } @@ -467,7 +467,7 @@ public class GT_NEI_DefaultHandler extends RecipeMapHandler { drawLine( lineCounter, EnumChatFormatting.ITALIC - + GT_Utility.trans("225", "Recipe by: ") + + GT_Utility.trans("272", "Recipe by: ") + recipe.owners.get(0).getName()); lineCounter++; } @@ -502,7 +502,7 @@ public class GT_NEI_DefaultHandler extends RecipeMapHandler { } else if (specialValue == -201) { specialInfo = GT_Utility.trans("206", "Scan for Assembly Line"); } else if (specialValue == -300 && GT_Mod.gregtechproxy.mEnableCleanroom) { - specialInfo = GT_Utility.trans("160", "Needs Cleanroom & LowGrav"); + specialInfo = GT_Utility.trans("160.1", "Needs Cleanroom & LowGrav"); } else if (specialValue == -400) { specialInfo = GT_Utility.trans("216", "Deprecated Recipe"); } else if (hasSpecialValueFormat()) { -- cgit