Skip to content

Commit

Permalink
Remove unnecessary priority
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Dec 1, 2024
1 parent 52d31e8 commit 8c90078
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public final class CloudNeoForgeEntrypoint {
*/
public CloudNeoForgeEntrypoint(final IEventBus modBus) {
if (ModList.get().isLoaded("adventure_platform_neoforge")) {
NeoForge.EVENT_BUS.addListener(EventPriority.HIGHEST, (ServerStartingEvent event) -> {
NeoForge.EVENT_BUS.addListener((ServerStartingEvent event) -> {
AdventureSupport.get().setupServer(event.getServer());
});
NeoForge.EVENT_BUS.addListener((ServerStoppedEvent event) -> {
Expand Down

0 comments on commit 8c90078

Please sign in to comment.