Skip to content

Commit 329bbd8

Browse files
committed
stage1/ml9: make transformation service path compatible with mixin bootstrap path
1 parent eac3a3f commit 329bbd8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stage1/modlauncher/src/main/java/gg/essential/loader/stage1/EssentialTransformationServiceBase.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ public EssentialTransformationServiceBase(
2828
) throws Exception {
2929
super(stage1 -> newFallbackService.apply(findUniqueId(stage0)));
3030

31-
// Check if another transformation service has already loaded stage2 (we do not want to load it twice)
31+
// Check if another stage 1 loader has already loaded stage2 (we do not want to load it twice)
3232
final TypesafeMap blackboard = Launcher.INSTANCE.blackboard();
3333
final TypesafeMap.Key<ITransformationService> LOADED =
34-
TypesafeMap.Key.getOrCreate(blackboard, KEY_LOADED, ITransformationService.class);
34+
TypesafeMap.Key.getOrCreate(blackboard, KEY_LOADED, Object.class);
3535
if (blackboard.get(LOADED).isPresent()) {
3636
return;
3737
}

0 commit comments

Comments
 (0)