Skip to content

Commit

Permalink
NUll region fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mindgamesnl committed Jun 18, 2023
1 parent 6f6f629 commit 96f803b
Show file tree
Hide file tree
Showing 10 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
java adoptopenjdk-8.0.332+9
java openjdk-18.0.2.1
Binary file added modules/gamemode-filter.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion modules/jutils/dependency-reduced-pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@
</plugins>
</build>
<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<maven.compiler.source>8</maven.compiler.source>
</properties>
</project>

Binary file added modules/migrate.map-to-storm.jar
Binary file not shown.
Binary file added modules/parties-hook.jar
Binary file not shown.
Binary file added modules/rinaorc-legacy-users.jar
Binary file not shown.
Binary file added modules/skywars-hook.jar
Binary file not shown.
Binary file added modules/vistas-client.jar
Binary file not shown.
Binary file added modules/vistas-server.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@ public void onExecute(User sender, String[] args) {
message(sender, ChatColor.BLUE + " -> " + ChatColor.YELLOW + "Source: " + ChatColor.GRAY + properties.getSource());
message(sender, ChatColor.BLUE + " -> " + ChatColor.YELLOW + "Loop: " + ChatColor.GRAY + properties.getLoop());
message(sender, ChatColor.BLUE + " -> " + ChatColor.YELLOW + "Allows VC: " + ChatColor.GRAY + properties.getAllowsVoiceChat());
if (properties.getWorlds() == null) {
message(sender, ChatColor.BLUE + " -> " + ChatColor.YELLOW + "Worlds: " + ChatColor.GRAY + "all");
continue;
}
message(sender, ChatColor.BLUE + " -> " + ChatColor.YELLOW + "Worlds: " + ChatColor.GRAY + String.join(", ", properties.getWorlds()));
}
}
Expand Down

0 comments on commit 96f803b

Please sign in to comment.