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
I write a PaperShelled plugin to try it out, but I found that adding the @Dependency annotation for the Bukkit plugin I need to modify causes the PaperShelled plugin to fail to load, it shows the message Could not load 'myplugin.jar' without further information, which took me a lot of time to figure out. :(
However, if I don't depend on that Bukkit plugin, the PaperShelled plugin will show a "target class not found" error during loading (when using Mixin injection). It seems that the PaperShelled plugin is loaded much earlier than the Bukkit plugin, causing it to not find the classes from the Bukkit plugin.
This is my first time using Mixin, and I don't have any related knowledge, so I wanted to ask if there is a suitable solution. Thank you.
The text was updated successfully, but these errors were encountered:
I write a PaperShelled plugin to try it out, but I found that adding the
@Dependency
annotation for the Bukkit plugin I need to modify causes the PaperShelled plugin to fail to load, it shows the messageCould not load 'myplugin.jar'
without further information, which took me a lot of time to figure out. :(However, if I don't depend on that Bukkit plugin, the PaperShelled plugin will show a "target class not found" error during loading (when using Mixin injection). It seems that the PaperShelled plugin is loaded much earlier than the Bukkit plugin, causing it to not find the classes from the Bukkit plugin.
This is my first time using Mixin, and I don't have any related knowledge, so I wanted to ask if there is a suitable solution. Thank you.
The text was updated successfully, but these errors were encountered: