Skip to content

Commit

Permalink
Fix for a reversed boolean check
Browse files Browse the repository at this point in the history
Should have done it on false, but was doing it on true...
  • Loading branch information
TechnicJelle committed Jan 17, 2023
1 parent efb41a0 commit 90d9c63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 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>com.technicjelle</groupId>
<artifactId>BlueMapOfflinePlayerMarkers</artifactId>
<version>2.3</version>
<version>2.4</version>
<packaging>jar</packaging>

<name>BlueMapOfflinePlayerMarkers</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static void add(OfflinePlayer player, Location location, GameMode gameMod

try {
if (!map.getAssetStorage().assetExists(assetName)) {
if (createPlayerHead(player, assetName, api, map))
if (!createPlayerHead(player, assetName, api, map))
imagePath = fallbackIcon;
}
} catch (IOException e) {
Expand Down

0 comments on commit 90d9c63

Please sign in to comment.