Skip to content

Commit

Permalink
Fix world must be an island exception (#1417)
Browse files Browse the repository at this point in the history
Fixes #1415
  • Loading branch information
tatteaid committed Oct 18, 2022
1 parent 18b25b7 commit f3cca43
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ public interface WorldInfo {
*/
static WorldInfo of(World world) {
Preconditions.checkNotNull(world, "world parameter cannot be null");
Preconditions.checkArgument(SuperiorSkyblockAPI.getGrid().isIslandsWorld(world), "World must be an islands world.");
return of(world.getName(), world.getEnvironment());
}

Expand Down

0 comments on commit f3cca43

Please sign in to comment.