Skip to content

Commit

Permalink
Inject GoG renderSky adjustments with slightly higher priority
Browse files Browse the repository at this point in the history
- fixes #4697 (startup crash with BedrockIfy)
- fixes #4607 (startup crash with Enhanced Celestials)
  • Loading branch information
TheRealWormbo committed Jul 13, 2024
1 parent 30dd003 commit 39efa59
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,11 @@
import vazkii.botania.xplat.BotaniaConfig;

/**
* This Mixin implements the Garden of Glass skybox and some in-world overlays
* This Mixin implements the Garden of Glass skybox and some in-world overlays.
* It needs to be applied before similar mixins from other mods (e.g. Enhanced Celestials, BedrockIfy) to prevent those
* from removing our injection points. These changes are compatible with those mods, assuming proper sequencing.
*/
@Mixin(LevelRenderer.class)
@Mixin(value = LevelRenderer.class, priority = 900)
public class LevelRendererMixin {
@Shadow
@Nullable
Expand Down

0 comments on commit 39efa59

Please sign in to comment.