Skip to content

Commit

Permalink
lower priority of automated testing event listener
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueLogix committed Feb 29, 2024
1 parent 8b81199 commit 5f55ca2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import net.minecraft.world.level.levelgen.WorldOptions;
import net.minecraft.world.level.levelgen.flat.FlatLevelGeneratorSettings;
import net.minecraft.world.level.levelgen.presets.WorldPresets;
import net.neoforged.bus.api.EventPriority;
import net.neoforged.neoforge.client.event.ClientPlayerNetworkEvent;
import net.neoforged.neoforge.client.event.ScreenEvent;
import net.neoforged.neoforge.common.NeoForge;
Expand All @@ -39,7 +40,7 @@ private static void onModLoad() {
}
NeoForge.EVENT_BUS.addListener(AutomaticTesting::onStartupEvent);
NeoForge.EVENT_BUS.addListener(AutomaticTesting::onLogin);
Quartz.EVENT_BUS.addListener(AutomaticTesting::onTestingStatus);
Quartz.EVENT_BUS.addListener(EventPriority.LOWEST, AutomaticTesting::onTestingStatus);
}

private static boolean recursing = false;
Expand Down

0 comments on commit 5f55ca2

Please sign in to comment.