mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-21 18:15:54 +01:00
Dont disable tagAPI for now
This commit is contained in:
parent
ad40d85a05
commit
1dd5a318d7
@ -1,7 +1,9 @@
|
||||
From 5469d039435d438a20d93aaa6724f420f6b24f25 Mon Sep 17 00:00:00 2001
|
||||
From 6f95844e426222e803501d99305d1c91362e5d3b Mon Sep 17 00:00:00 2001
|
||||
From: md_5 <md_5@live.com.au>
|
||||
Date: Thu, 14 Feb 2013 17:32:20 +1100
|
||||
Subject: [PATCH] Netty Implement an uber efficient network engine based on the
|
||||
Subject: [PATCH] Netty
|
||||
|
||||
Implement an uber efficient network engine based on the
|
||||
Java NIO framework Netty. This is basically a complete rewrite of the
|
||||
Minecraft network engine with many distinct advantages. First and foremost,
|
||||
there will no longer be the horrid, and redundant case of 2, or even at
|
||||
@ -28,7 +30,6 @@ Subject: [PATCH] Netty Implement an uber efficient network engine based on the
|
||||
as well as various other side benefits such as chat thread pooling and a
|
||||
slight reduction in latency. This commit is licensed under the Creative
|
||||
Commons Attribution-ShareAlike 3.0 Unported license.
|
||||
|
||||
---
|
||||
pom.xml | 5 +
|
||||
.../java/net/minecraft/server/DedicatedServer.java | 4 +-
|
||||
|
@ -1,4 +1,4 @@
|
||||
From c3405bf6fd35a6b90d17bde92a33872b8c9b9404 Mon Sep 17 00:00:00 2001
|
||||
From b4957d9a35c28888d9f56ed176d396f5f6d9d944 Mon Sep 17 00:00:00 2001
|
||||
From: md_5 <md_5@live.com.au>
|
||||
Date: Tue, 19 Feb 2013 18:30:10 +1100
|
||||
Subject: [PATCH] Implement TagAPI into Spigot - much more efficient and only a
|
||||
@ -49,7 +49,7 @@ index 27a548f..d95d5af 100644
|
||||
if (this.tracker instanceof EntityMinecart) {
|
||||
EntityMinecart entityminecart = (EntityMinecart) this.tracker;
|
||||
diff --git a/src/main/java/org/bukkit/craftbukkit/CraftServer.java b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
||||
index f00b28d..c42d1c3 100644
|
||||
index f00b28d..ed7598e 100644
|
||||
--- a/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
||||
+++ b/src/main/java/org/bukkit/craftbukkit/CraftServer.java
|
||||
@@ -266,6 +266,13 @@ public final class CraftServer implements Server {
|
||||
@ -57,7 +57,7 @@ index f00b28d..c42d1c3 100644
|
||||
Plugin[] plugins = pluginManager.loadPlugins(pluginFolder);
|
||||
for (Plugin plugin : plugins) {
|
||||
+ // Spigot start
|
||||
+ if (plugin.getName().equals("TagAPI")) {
|
||||
+ if (/*plugin.getName().equals("TagAPI")*/false) {
|
||||
+ getLogger().log(Level.SEVERE, "*** Disabled TagAPI - It is inbuilt into Spigot, and not required ***", new Exception());
|
||||
+ pluginManager.disablePlugin(plugin);
|
||||
+ continue;
|
||||
|
Loading…
Reference in New Issue
Block a user