Skip to content
This repository was archived by the owner on Aug 31, 2026. It is now read-only.

Commit 7f8ee7f

Browse files
StannisModclaude
andcommitted
fix: remove vestigial dummy mod container from ASM coremod
The coremod's only job is bootstrapping mixins (done in the plugin constructor); the DummyModContainer "advancedrocketrycore" registered empty lifecycle handlers and nothing referenced its modid. It only added a phantom entry to the title-screen "loaded" count without ever becoming "active", producing the off-by-one reported in dercodeKoenig#71. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 4146bb1 commit 7f8ee7f

2 files changed

Lines changed: 1 addition & 60 deletions

File tree

src/main/java/zmaster587/advancedRocketry/asm/AdvancedRocketryPlugin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public String[] getASMTransformerClass() {
3434

3535
@Override
3636
public String getModContainerClass() {
37-
return "zmaster587.advancedRocketry.asm.ModContainer";
37+
return null;
3838
}
3939

4040
@Override

src/main/java/zmaster587/advancedRocketry/asm/ModContainer.java

Lines changed: 0 additions & 59 deletions
This file was deleted.

0 commit comments

Comments
 (0)