Skip to content

Commit

Permalink
fix southSelected
Browse files Browse the repository at this point in the history
  • Loading branch information
honnisha committed May 7, 2022
1 parent 5a59f5b commit 091867f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>honny</groupId>
<artifactId>HonnyCompass</artifactId>
<version>1.0</version>
<version>1.1</version>
<packaging>jar</packaging>

<name>HonnyCompass</name>
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/honny/MainConfigManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,19 @@ public class MainConfigManager {

public MainConfigManager(FileConfiguration config) {
south = getString(config, "south", "&e&lS");
southSelected = getString(config, "north-selected", "&6&lS");
southSelected = getString(config, "south-selected", "&6&lS");
replacers.put(south, southSelected);

west = getString(config, "west", "&e&lW");
westSelected = getString(config, "west-selected", "&6&lS");
westSelected = getString(config, "west-selected", "&6&lW");
replacers.put(west, westSelected);

north = getString(config, "north", "&e&lN");
northSelected = getString(config, "north-selected", "&6&lS");
northSelected = getString(config, "north-selected", "&6&lN");
replacers.put(north, northSelected);

east = getString(config, "east", "&e&lE");
eastSelected = getString(config, "east-selected", "&6&lS");
eastSelected = getString(config, "east-selected", "&6&lE");
replacers.put(east, eastSelected);

fill = getString(config, "fill", "&7═");
Expand Down

0 comments on commit 091867f

Please sign in to comment.