Colormatic

Colormatic

6M Downloads

Cross mod interaction crash

zabi94 opened this issue ยท 5 comments

commented

If I understand correctly the following mixin injection assumes no mod will call the getColor method before the property objects are initialized, and it may be the cause of this crash that was reported to me: zabi94/ExtraAlchemy#81

@Inject(method = "getColor", at = @At("HEAD"), cancellable = true)
private void onColor(CallbackInfoReturnable<Integer> info) {
StatusEffect self = (StatusEffect)(Object)this;
int color = Colormatic.COLOR_PROPS.getProperties().getPotion(self);
if(color != 0) {
info.setReturnValue(color);
}
}

All the details are included by the user in that report

commented

bad000 - guess it was bad lol. Looks like you fixed it on your end, but I can look into gating the access behind a check or making sure the properties are initialized. Note that if you cache the colors before resource reload, they may be incorrect regardless.

commented

๐Ÿ˜‚ Jokes aside, I'm kinda curious about where the bad000 name comes from. At first I thought it might be the obfuscated class name for StatusEffect, but it's not

commented

bad000 is the name mixin prepends to the callback for name mangling purposes.

commented

Curious name choice then