Skip to content

Commit

Permalink
Angelica Compat (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchej123 authored Dec 24, 2023
1 parent a64d225 commit b7a30f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/mitchej123/hodgepodge/mixins/Mixins.java
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ public enum Mixins {
.addTargetedMod(TargetedMod.FASTCRAFT).addExcludedMod(TargetedMod.OPTIFINE)),
OPTIMIZE_TEXTURE_LOADING(new Builder("Optimize Texture Loading").setPhase(Phase.EARLY)
.addMixinClasses("minecraft.textures.client.MixinTextureUtil").addTargetedMod(TargetedMod.VANILLA)
.setApplyIf(() -> Common.config.optimizeTextureLoading).setSide(Side.CLIENT)),
.addExcludedMod(TargetedMod.ANGELICA).setApplyIf(() -> Common.config.optimizeTextureLoading)
.setSide(Side.CLIENT)),
HIDE_POTION_PARTICLES(new Builder("Hide Potion Particles").setPhase(Phase.EARLY)
.addMixinClasses("minecraft.MixinEntityLivingBase_HidePotionParticles").setSide(Side.CLIENT)
.setApplyIf(() -> Common.config.hidePotionParticlesFromSelf).addTargetedMod(TargetedMod.VANILLA)),
Expand Down

0 comments on commit b7a30f4

Please sign in to comment.