Skip to content

Commit 091867f

Browse files
committed
fix southSelected
1 parent 5a59f5b commit 091867f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>honny</groupId>
88
<artifactId>HonnyCompass</artifactId>
9-
<version>1.0</version>
9+
<version>1.1</version>
1010
<packaging>jar</packaging>
1111

1212
<name>HonnyCompass</name>

src/main/java/honny/MainConfigManager.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,19 @@ public class MainConfigManager {
5858

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

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

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

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

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

0 commit comments

Comments
 (0)