Skip to content

Commit

Permalink
Fixed config options being in the wrong category
Browse files Browse the repository at this point in the history
Feeder and Shearing turtle were in the navigational turtle category.
  • Loading branch information
darichey committed Jan 10, 2016
1 parent 1d01dc0 commit a8a0b42
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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")
Expand Down

0 comments on commit a8a0b42

Please sign in to comment.