We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 338b528 commit fdcbb33Copy full SHA for fdcbb33
src/main/java/fr/xephi/authme/AuthMe.java
@@ -120,6 +120,14 @@ public void onEnable() {
120
// Load the plugin version data from the plugin description file
121
loadPluginInfo(getDescription().getVersion());
122
123
+ // Prevent running AuthMeBridge due to major exploit issues
124
+ if(getServer().getPluginManager().isPluginEnabled("AuthMeBridge")) {
125
+ ConsoleLogger.warning("Detected AuthMeBridge, support for it has been dropped as it was "
126
+ + "causing exploit issues, please use AuthMeBungee instead! Aborting!");
127
+ stopOrUnload();
128
+ return;
129
+ }
130
+
131
// Initialize the plugin
132
try {
133
initialize();
0 commit comments