Skip to content

Commit

Permalink
FactionsUUID 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mbax committed Oct 12, 2021
1 parent 365f6e2 commit 3f2df01
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion modules/FinalCombination/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.massivecraft</groupId>
<artifactId>Factions</artifactId>
<version>1.6.9.5-U0.6.0</version>
<version>1.6.9.5-U0.6.1</version>
<packaging>jar</packaging>

<name>Factions</name>
Expand Down
2 changes: 1 addition & 1 deletion modules/Legacy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.massivecraft</groupId>
<artifactId>Factions-Legacy</artifactId>
<version>1.6.9.5-U0.6.0</version>
<version>1.6.9.5-U0.6.1</version>
<packaging>jar</packaging>

<name>Factions Legacy Version Support</name>
Expand Down
2 changes: 1 addition & 1 deletion modules/Main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.massivecraft</groupId>
<artifactId>Factions-Plugin</artifactId>
<version>1.6.9.5-U0.6.0</version>
<version>1.6.9.5-U0.6.1</version>
<packaging>jar</packaging>

<name>Factions Plugin (mostly)</name>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>com.massivecraft</groupId>
<artifactId>Factions-aggregator</artifactId>
<version>1.6.9.5-U0.6.0</version>
<version>1.6.9.5-U0.6.1</version>
<packaging>pom</packaging>

<name>Factions Aggregator Project</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public int getClaimUpdatePeriod() {
}

// This is used for config loading
@SuppressWarnings("unused")
@SuppressWarnings({"unused", "UnstableApiUsage"})
private transient TypeToken<Map<String, Style>> factionStylesToken = new TypeToken<Map<String, Style>>() {
};

Expand Down Expand Up @@ -152,6 +152,7 @@ public Map<String, DynmapStyle> getFactionStyles() {
.setBoost(style.isStyleBoost()));
} else if (s instanceof Map) {
DynmapStyle style = new DynmapStyle();
@SuppressWarnings("unchecked")
Map<String, Object> map = (Map<String, Object>) s;
if (map.containsKey("homeMarker")) {
style.setHomeMarker(map.get("homeMarker").toString());
Expand Down

0 comments on commit 3f2df01

Please sign in to comment.