Skip to content

Commit

Permalink
fix: /sethome override error
Browse files Browse the repository at this point in the history
  • Loading branch information
Thatsmusic99 committed Jul 12, 2023
1 parent f6413b4 commit 770dd76
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -511,7 +511,7 @@ public boolean hasHome(@NotNull final String name) {
throw new NullPointerException("Context [%s] | Message [%s]".formatted(sender, "Missing home: " + name));

return home;
}, CoreClass.sync).thenAcceptAsync(home -> home.move(newLocation, sender));
}, CoreClass.sync).thenAcceptAsync(home -> home.move(newLocation, sender), CoreClass.sync);
}

/**
Expand Down

0 comments on commit 770dd76

Please sign in to comment.