Skip to content

v1.7.9: 修复 ScalableLuxCompatMixin target 格式 / fix ScalableLuxCompatMixin target format

Choose a tag to compare

@OLKMO OLKMO released this 31 Jul 11:44

修复 v1.7.8 中 ScalableLuxCompatMixin 的 @At("NEW") target 使用了错误的方法描述符格式,导致 mixin 扫描 0 个目标,服务端启动崩溃(Issue #13)。

Fixed v1.7.8 ScalableLuxCompatMixin @At("NEW") target using incorrect method descriptor format, causing mixin to scan 0 targets and crash server startup (Issue #13).

问题 / Issue: @At("NEW") 要求 new 格式,但代码误用了方法描述符格式,导致 Scanned 0 target(s)。

@At("NEW") requires new format, but code mistakenly used method descriptor format, causing Scanned 0 target(s).

修复 / Fix: 将 target 改为 new 格式。

Changed target to new format.