Incompatibility with other mods
pufmat opened this issue ยท 1 comments
Hi ๐
Players have found that some attributes from my Pufferfish's Attributes mod don't work with Soulslike Weaponry. I investigated it and found that the issue is caused by this mixin:
Here and in the other places your mod uses
@Inject
to modify return value. This way makes it incompatible with other mods that try to modify the same value. Consider using @ModifyReturnValue
instead of @Inject
as it allows multiple mods to modify the same value.