Skip to content

Commit 5d2310b

Browse files
committed
Fix incorrect classname in Valhelsia Structures patch
Looks like this was broken during the multiloader refactor Related: #135
1 parent a72ebc4 commit 5d2310b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

forge/src/main/java/org/embeddedt/modernfix/platform/forge/ModernFixPlatformHooksImpl.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ private static Function<String, Enumeration<URL>> constructResourceFinder() thro
209209
}
210210

211211
public static void applyASMTransformers(String mixinClassName, ClassNode targetClass) {
212-
if(mixinClassName.equals("org.embeddedt.modernfix.forge.valhesia.chunk_deadlock.bugfix.mixin.BlockStateBaseMixin")) {
212+
if(mixinClassName.equals("org.embeddedt.modernfix.forge.mixin.bugfix.chunk_deadlock.valhesia.BlockStateBaseMixin")) {
213213
// We need to destroy Valhelsia's callback so it can never run getBlockState
214214
for(MethodNode m : targetClass.methods) {
215215
if(m.name.contains("valhelsia_placeDousedTorch")) {

0 commit comments

Comments
 (0)