2014-07-09 01:26:23 +02:00
|
|
|
From 8893f8d37c41a94efb574440d782b37507bb35a0 Mon Sep 17 00:00:00 2001
|
2014-07-03 03:47:25 +02:00
|
|
|
From: Zach Brown <Zbob750@live.com>
|
|
|
|
Date: Wed, 2 Jul 2014 22:34:04 -0500
|
|
|
|
Subject: [PATCH] Ability to disable asynccatcher
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotConfig.java
|
2014-07-06 09:47:46 +02:00
|
|
|
index 5d309da..3131c30 100644
|
2014-07-03 03:47:25 +02:00
|
|
|
--- a/src/main/java/org/github/paperspigot/PaperSpigotConfig.java
|
|
|
|
+++ b/src/main/java/org/github/paperspigot/PaperSpigotConfig.java
|
|
|
|
@@ -120,4 +120,13 @@ public class PaperSpigotConfig
|
|
|
|
config.addDefault( path, def );
|
|
|
|
return config.getString( path, config.getString( path ) );
|
|
|
|
}
|
|
|
|
-}
|
|
|
|
\ No newline at end of file
|
|
|
|
+
|
|
|
|
+ public static boolean asyncCatcherFeature;
|
|
|
|
+ private static void asyncCatcherFeature()
|
|
|
|
+ {
|
|
|
|
+ asyncCatcherFeature = getBoolean( "settings.async-plugin-bad-magic-catcher", true );
|
|
|
|
+ if ( !asyncCatcherFeature ) {
|
|
|
|
+ Bukkit.getLogger().log( Level.INFO, "Disabling async plugin bad ju-ju catcher, this might be bad depending on your plugins" );
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
diff --git a/src/main/java/org/spigotmc/AsyncCatcher.java b/src/main/java/org/spigotmc/AsyncCatcher.java
|
|
|
|
index 4b3aa85..c4312db 100644
|
|
|
|
--- a/src/main/java/org/spigotmc/AsyncCatcher.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/AsyncCatcher.java
|
|
|
|
@@ -1,11 +1,12 @@
|
|
|
|
package org.spigotmc;
|
|
|
|
|
|
|
|
import net.minecraft.server.MinecraftServer;
|
|
|
|
+import org.github.paperspigot.PaperSpigotConfig; // PaperSpigot
|
|
|
|
|
|
|
|
public class AsyncCatcher
|
|
|
|
{
|
|
|
|
|
|
|
|
- public static boolean enabled = true;
|
|
|
|
+ public static boolean enabled = PaperSpigotConfig.asyncCatcherFeature; // PaperSpigot - AsyncCatcher override feature
|
|
|
|
|
|
|
|
public static void catchOp(String reason)
|
|
|
|
{
|
|
|
|
--
|
|
|
|
1.9.1
|
|
|
|
|