Skip to content

Commit

Permalink
Remove check for Fusion in MixinConfigPlugin.java
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperMartijn642 authored Aug 19, 2023
1 parent a45dde8 commit a4dcedb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void acceptTargets(Set<String> set, Set<String> set1) {
public static boolean isMixinClassApplied(String name) {
String baseName = mixinClassNameToBaseName(name);
// texture optimization causes issues when OF is installed
if(baseName.startsWith("mixin.textures") && (VintageFixCore.OPTIFINE || VintageFixCore.FUSION)) {
if(baseName.startsWith("mixin.textures") && VintageFixCore.OPTIFINE) {
return false;
}
boolean isEnabled = Boolean.parseBoolean(config.getProperty(baseName, ""));
Expand Down

0 comments on commit a4dcedb

Please sign in to comment.