From 71175ecaa863e3d526e2e73d4f7b12c485d3d75e Mon Sep 17 00:00:00 2001
From: Spigot <noreply+git-spigot@papermc.io>
Date: Tue, 19 Feb 2013 20:28:30 +1100
Subject: [PATCH] Dont disable tagAPI for now

By: md_5 <md_5@live.com.au>
---
 CraftBukkit-Patches/0025-Netty.patch                       | 7 ++++---
 ...lement-TagAPI-into-Spigot-much-more-efficient-and.patch | 6 +++---
 2 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/CraftBukkit-Patches/0025-Netty.patch b/CraftBukkit-Patches/0025-Netty.patch
index 7fd42ca5c4..90d11fdfcf 100644
--- a/CraftBukkit-Patches/0025-Netty.patch
+++ b/CraftBukkit-Patches/0025-Netty.patch
@@ -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 +-
diff --git a/CraftBukkit-Patches/0028-Implement-TagAPI-into-Spigot-much-more-efficient-and.patch b/CraftBukkit-Patches/0028-Implement-TagAPI-into-Spigot-much-more-efficient-and.patch
index 3c1fbc375e..ba9c108f9a 100644
--- a/CraftBukkit-Patches/0028-Implement-TagAPI-into-Spigot-much-more-efficient-and.patch
+++ b/CraftBukkit-Patches/0028-Implement-TagAPI-into-Spigot-much-more-efficient-and.patch
@@ -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;