From b178fd34426411a201156932291b5db7b512d652 Mon Sep 17 00:00:00 2001 From: Eric Schneider Date: Sun, 9 Jul 2017 08:13:15 -0400 Subject: [PATCH] Fixed grammar (#1192) --- src/main/java/techreborn/config/ConfigTechReborn.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/techreborn/config/ConfigTechReborn.java b/src/main/java/techreborn/config/ConfigTechReborn.java index 975c1337f..0c002837a 100644 --- a/src/main/java/techreborn/config/ConfigTechReborn.java +++ b/src/main/java/techreborn/config/ConfigTechReborn.java @@ -30,10 +30,10 @@ import techreborn.lib.ModInfo; @RebornRegistry(modID = ModInfo.MOD_ID) public class ConfigTechReborn { - @ConfigRegistry(config = "recipes", category = "railcraft", key = "disableRailcraftNugget", comment = "When true TechReborn will remove Railcrafts Iron Nugget to steel nuggert recipe.") + @ConfigRegistry(config = "recipes", category = "railcraft", key = "disableRailcraftNugget", comment = "When true TechReborn will remove Railcraft's Iron Nugget to steel nugget recipe.") public static boolean disableRailcraftSteelNuggetRecipe = false; - @ConfigRegistry(config = "recipes", category = "ic2", key = "deduplicate", comment = "Changes a lot of reipes and hides blocks to intrgrade TechReborn into IC2") + @ConfigRegistry(config = "recipes", category = "ic2", key = "deduplicate", comment = "Changes a lot of recipes and hides blocks to integrate TechReborn into IC2") public static boolean REMOVE_DUPLICATES = false; @ConfigRegistry(config = "client", category = "hud", key = "showChargeHud", comment = "Show the charge hud") public static boolean ShowChargeHud = true;