From a8a0b4218e247237f585cd4abdf88d78f6be3912 Mon Sep 17 00:00:00 2001 From: grandmind Date: Sat, 9 Jan 2016 18:44:54 -0600 Subject: [PATCH] Fixed config options being in the wrong category Feeder and Shearing turtle were in the navigational turtle category. --- .../com/austinv11/peripheralsplusplus/reference/Config.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/austinv11/peripheralsplusplus/reference/Config.java b/src/main/java/com/austinv11/peripheralsplusplus/reference/Config.java index 90c6b322..9aaff76a 100644 --- a/src/main/java/com/austinv11/peripheralsplusplus/reference/Config.java +++ b/src/main/java/com/austinv11/peripheralsplusplus/reference/Config.java @@ -58,7 +58,7 @@ public class Config { @Description(category = "Ore Dictionary", comment = "If enabled, the Ore Dictionary peripheral will display a chat message with the Ore Dictionary entries - useful for debugging") public static boolean oreDictionaryMessage = false; - @Description(category = "Navigational Turtle", comment = ENABLE_CONFIG_MESSAGE) + @Description(category = "Shearing Turtle", comment = ENABLE_CONFIG_MESSAGE) public static boolean enableShearTurtle = true; @Description(category = "Forestry Analyzers", comment = ENABLE_CONFIG_MESSAGE) @@ -73,7 +73,7 @@ public class Config { @Description(category = "Environment Scanner", comment = ENABLE_CONFIG_MESSAGE) public static boolean enableEnvironmentScanner = true; - @Description(category = "Navigational Turtle", comment = ENABLE_CONFIG_MESSAGE) + @Description(category = "Feeder Turtle", comment = ENABLE_CONFIG_MESSAGE) public static boolean enableFeederTurtle = true; @Description(category = "Villagers", comment = "Whether to enable villagers from this mod")