You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using the * wildcard in mixin method targets doesn't work, because the remapping step always adds some method args to the method name, even when not specifying them
an example with mc 1.21.4 and yarn:
having this mixin, I would expect it to inject into all 3 available constructors
@Mixin(PersistentProjectileEntity.class)
public class ArrowMixin {
@Inject(method = "<init>*", at = @At("TAIL"))
private void atEnd(CallbackInfo ci) {}
}
instead it only injects into one of them, because the generated refmap removed the * and added method args
using the
*
wildcard in mixin method targets doesn't work, because the remapping step always adds some method args to the method name, even when not specifying theman example with mc 1.21.4 and yarn:
having this mixin, I would expect it to inject into all 3 available constructors
instead it only injects into one of them, because the generated refmap removed the
*
and added method argsThe text was updated successfully, but these errors were encountered: