Closed Dymeth closed 5 months ago
we also hope for the update
plugin was updated allready for 1.19.x
plugin was updated allready for 1.19.x
It's NOT an issue about updating plugin to 1.19 or some else version. But OK
use the right Version for
plugin was updated allready for 1.19.x https://github.com/resi23/Images/releases/tag/v2.3.3
It's NOT an issue about updating plugin to 1.19 or some else version. But OK
use the right Version for 1.19 you need to look in the patchlogs what version was made for the right server version your using
The main plugin class performs several operations when the class is statically initialized instead of using onEnable(). When performing these operations, errors can occur. For this reason, Spigot is unable to initialize the main class of a plugin, which leads to the absence of Images in the plugins list (/plugins). This negatively affects the user experience, because the server administrator may not observe for a long time that there are problems with the plugin.
If you use onEnable() instead of static initialization, the plugin will be displayed in /plugins, and if any error occurs during loading, it will just be colored red.
As far as I can see, exceptions can only occur on this line:
private static final PacketListener BRIDGE = Versioned.getInstance(PacketListener.class);
So, if we move the method call to onEnable(), this issue will be solved.An example of an exception that may occur when calling this method: