mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 02:10:30 +01:00
41 lines
1.7 KiB
Diff
41 lines
1.7 KiB
Diff
From 78b47c601829196323f63810551203efb2620d88 Mon Sep 17 00:00:00 2001
|
|
From: Zach Brown <Zbob750@live.com>
|
|
Date: Tue, 5 Aug 2014 17:39: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
|
|
index f4acbb3..2cc159b 100644
|
|
--- a/src/main/java/org/github/paperspigot/PaperSpigotConfig.java
|
|
+++ b/src/main/java/org/github/paperspigot/PaperSpigotConfig.java
|
|
@@ -143,4 +143,13 @@ public class PaperSpigotConfig
|
|
{
|
|
babyZombieMovementSpeed = getDouble( "settings.baby-zombie-movement-speed", 0.5D); // Player moves at 0.1F, for reference
|
|
}
|
|
+
|
|
+ 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 may 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..f7e8d16 100644
|
|
--- a/src/main/java/org/spigotmc/AsyncCatcher.java
|
|
+++ b/src/main/java/org/spigotmc/AsyncCatcher.java
|
|
@@ -5,7 +5,7 @@ import net.minecraft.server.MinecraftServer;
|
|
public class AsyncCatcher
|
|
{
|
|
|
|
- public static boolean enabled = true;
|
|
+ public static boolean enabled = org.github.paperspigot.PaperSpigotConfig.asyncCatcherFeature; // PaperSpigot - Allow disabling of AsyncCatcher from PaperSpigotConfig
|
|
|
|
public static void catchOp(String reason)
|
|
{
|
|
--
|
|
1.9.1
|
|
|