diff --git a/Bukkit b/Bukkit index 1f83111208..30a9411199 160000 --- a/Bukkit +++ b/Bukkit @@ -1 +1 @@ -Subproject commit 1f83111208ab3612f384a2e6b65cc28423dc625e +Subproject commit 30a9411199af1fddf0e26c2181fa8f37b980a128 diff --git a/Bukkit-Patches/0001-POM-Changes.patch b/Bukkit-Patches/0001-POM-Changes.patch index fb3e2e4b0c..3e3c012b24 100644 --- a/Bukkit-Patches/0001-POM-Changes.patch +++ b/Bukkit-Patches/0001-POM-Changes.patch @@ -1,11 +1,11 @@ -From af02a7e6f7a94b882fc13435e78e9f2eca684060 Mon Sep 17 00:00:00 2001 +From 4563fe77bd20047b474f591af71f2f91ccd9b2b3 Mon Sep 17 00:00:00 2001 From: md_5 Date: Sun, 2 Jun 2013 10:36:24 +1000 Subject: [PATCH] POM Changes diff --git a/pom.xml b/pom.xml -index fbdc3c3..34c13e9 100644 +index 4209f2a..37ef0ef 100644 --- a/pom.xml +++ b/pom.xml @@ -1,43 +1,23 @@ @@ -23,7 +23,7 @@ index fbdc3c3..34c13e9 100644 + + org.spigotmc + spigot-api - 1.6.2-R0.2-SNAPSHOT + 1.6.2-R1.1-SNAPSHOT - Bukkit - http://www.bukkit.org + Spigot-API diff --git a/Bukkit-Patches/0012-Console-Command-Completion.patch b/Bukkit-Patches/0012-Console-Command-Completion.patch deleted file mode 100644 index ea813d4cfb..0000000000 --- a/Bukkit-Patches/0012-Console-Command-Completion.patch +++ /dev/null @@ -1,78 +0,0 @@ -From f9a4d23f040aa2b30d09b6e563fb90a87c85731a Mon Sep 17 00:00:00 2001 -From: Phillip Schichtel -Date: Mon, 29 Apr 2013 23:07:42 +0200 -Subject: [PATCH] Console Command Completion - -Implement command tab completion in the console. Adds BUKKIT-4168 - -To accomplish this 2 changes to Bukkit were required: -- the player check in Command.tabComplete() had to be removed -- the SimpleCommandMap prepends the / only for players - -diff --git a/src/main/java/org/bukkit/command/Command.java b/src/main/java/org/bukkit/command/Command.java -index 5416c71..2f189ca 100644 ---- a/src/main/java/org/bukkit/command/Command.java -+++ b/src/main/java/org/bukkit/command/Command.java -@@ -78,18 +78,13 @@ public abstract class Command { - Validate.notNull(args, "Arguments cannot be null"); - Validate.notNull(alias, "Alias cannot be null"); - -- if (!(sender instanceof Player) || args.length == 0) { -- return ImmutableList.of(); -- } -- - String lastWord = args[args.length - 1]; - -- Player senderPlayer = (Player) sender; -- - ArrayList matchedPlayers = new ArrayList(); -+ final boolean noPlayer = !(sender instanceof Player); - for (Player player : sender.getServer().getOnlinePlayers()) { - String name = player.getName(); -- if (senderPlayer.canSee(player) && StringUtil.startsWithIgnoreCase(name, lastWord)) { -+ if (noPlayer || ((Player) sender).canSee(player) && StringUtil.startsWithIgnoreCase(name, lastWord)) { - matchedPlayers.add(name); - } - } -diff --git a/src/main/java/org/bukkit/command/SimpleCommandMap.java b/src/main/java/org/bukkit/command/SimpleCommandMap.java -index f567dc0..f716782 100644 ---- a/src/main/java/org/bukkit/command/SimpleCommandMap.java -+++ b/src/main/java/org/bukkit/command/SimpleCommandMap.java -@@ -16,6 +16,7 @@ import java.util.regex.Pattern; - import org.apache.commons.lang.Validate; - import org.bukkit.Server; - import org.bukkit.command.defaults.*; -+import org.bukkit.entity.Player; - import org.bukkit.util.StringUtil; - - public class SimpleCommandMap implements CommandMap { -@@ -226,6 +227,8 @@ public class SimpleCommandMap implements CommandMap { - ArrayList completions = new ArrayList(); - Map knownCommands = this.knownCommands; - -+ final String prefix = (sender instanceof Player ? "/" : ""); -+ - for (VanillaCommand command : fallbackCommands) { - String name = command.getName(); - -@@ -241,7 +244,7 @@ public class SimpleCommandMap implements CommandMap { - continue; - } - -- completions.add('/' + name); -+ completions.add(prefix + name); - } - - for (Map.Entry commandEntry : knownCommands.entrySet()) { -@@ -254,7 +257,7 @@ public class SimpleCommandMap implements CommandMap { - String name = commandEntry.getKey(); // Use the alias, not command name - - if (StringUtil.startsWithIgnoreCase(name, cmdLine)) { -- completions.add('/' + name); -+ completions.add(prefix + name); - } - } - --- -1.8.1.2 - diff --git a/Bukkit-Patches/0013-InventoryClickEvent-getClickedInventory.patch b/Bukkit-Patches/0012-InventoryClickEvent-getClickedInventory.patch similarity index 97% rename from Bukkit-Patches/0013-InventoryClickEvent-getClickedInventory.patch rename to Bukkit-Patches/0012-InventoryClickEvent-getClickedInventory.patch index a821e2bfa0..c037189d52 100644 --- a/Bukkit-Patches/0013-InventoryClickEvent-getClickedInventory.patch +++ b/Bukkit-Patches/0012-InventoryClickEvent-getClickedInventory.patch @@ -1,4 +1,4 @@ -From 325d5e9fcec324f6d39425a4dede2a6b1eb1d793 Mon Sep 17 00:00:00 2001 +From 17fc2456d07aaeff2099321de056e6a61e18462c Mon Sep 17 00:00:00 2001 From: Aikar Date: Sun, 7 Jul 2013 10:32:05 -0400 Subject: [PATCH] InventoryClickEvent getClickedInventory diff --git a/Bukkit-Patches/0014-Added-getAllSessionData-to-the-Conversation-API.patch b/Bukkit-Patches/0013-Added-getAllSessionData-to-the-Conversation-API.patch similarity index 93% rename from Bukkit-Patches/0014-Added-getAllSessionData-to-the-Conversation-API.patch rename to Bukkit-Patches/0013-Added-getAllSessionData-to-the-Conversation-API.patch index 9f45c3877d..8d0cb1d676 100644 --- a/Bukkit-Patches/0014-Added-getAllSessionData-to-the-Conversation-API.patch +++ b/Bukkit-Patches/0013-Added-getAllSessionData-to-the-Conversation-API.patch @@ -1,4 +1,4 @@ -From 1f0602e700904904b1d77ec02b066f955dcf6ea0 Mon Sep 17 00:00:00 2001 +From 5d672b1aa92376a8e13540221f774f14ff96b2d7 Mon Sep 17 00:00:00 2001 From: Alex Bennett Date: Thu, 11 Jul 2013 15:31:32 -0500 Subject: [PATCH] Added getAllSessionData() to the Conversation API. diff --git a/Bukkit-Patches/0015-Catch-Conversation-API-Errors.patch b/Bukkit-Patches/0014-Catch-Conversation-API-Errors.patch similarity index 94% rename from Bukkit-Patches/0015-Catch-Conversation-API-Errors.patch rename to Bukkit-Patches/0014-Catch-Conversation-API-Errors.patch index 26b5b03271..2a25fdd1cd 100644 --- a/Bukkit-Patches/0015-Catch-Conversation-API-Errors.patch +++ b/Bukkit-Patches/0014-Catch-Conversation-API-Errors.patch @@ -1,4 +1,4 @@ -From fb52162279c4bf3d6c38cf9f731e60addeffb073 Mon Sep 17 00:00:00 2001 +From 8c044d475e5ebdf5ad41667d3db04a03cf4dc33f Mon Sep 17 00:00:00 2001 From: md_5 Date: Mon, 22 Jul 2013 19:09:43 +1000 Subject: [PATCH] Catch Conversation API Errors diff --git a/Bukkit-Patches/0016-Player-Collision-API.patch b/Bukkit-Patches/0015-Player-Collision-API.patch similarity index 95% rename from Bukkit-Patches/0016-Player-Collision-API.patch rename to Bukkit-Patches/0015-Player-Collision-API.patch index ae29657c5d..28529a3e8d 100644 --- a/Bukkit-Patches/0016-Player-Collision-API.patch +++ b/Bukkit-Patches/0015-Player-Collision-API.patch @@ -1,4 +1,4 @@ -From c5cfcb06166b8f6a1e410bfc19340fdd8e641019 Mon Sep 17 00:00:00 2001 +From 64dc76e6adadefc5072c492ca1ebd81e88fa95a9 Mon Sep 17 00:00:00 2001 From: md_5 Date: Sat, 3 Aug 2013 19:20:50 +1000 Subject: [PATCH] Player Collision API diff --git a/Bukkit-Patches/0017-Expand-Boolean-Prompt-Values.patch b/Bukkit-Patches/0016-Expand-Boolean-Prompt-Values.patch similarity index 93% rename from Bukkit-Patches/0017-Expand-Boolean-Prompt-Values.patch rename to Bukkit-Patches/0016-Expand-Boolean-Prompt-Values.patch index 8fdcff33ae..b5d4d3afe4 100644 --- a/Bukkit-Patches/0017-Expand-Boolean-Prompt-Values.patch +++ b/Bukkit-Patches/0016-Expand-Boolean-Prompt-Values.patch @@ -1,11 +1,11 @@ -From eff7918f5154d1394004f40e5f3a74f99793a177 Mon Sep 17 00:00:00 2001 +From f8a6577edc2c37aa3bc8cffd9fbf29491488bade Mon Sep 17 00:00:00 2001 From: md_5 Date: Sat, 3 Aug 2013 19:42:16 +1000 Subject: [PATCH] Expand Boolean Prompt Values diff --git a/src/main/java/org/bukkit/conversations/BooleanPrompt.java b/src/main/java/org/bukkit/conversations/BooleanPrompt.java -index 3bfd733..cd29a0c 100644 +index 6abb354..a51e754 100644 --- a/src/main/java/org/bukkit/conversations/BooleanPrompt.java +++ b/src/main/java/org/bukkit/conversations/BooleanPrompt.java @@ -14,12 +14,13 @@ public abstract class BooleanPrompt extends ValidatingPrompt{ diff --git a/Bukkit-Patches/0018-Add-Getter-for-Entity-Invulnerability.patch b/Bukkit-Patches/0017-Add-Getter-for-Entity-Invulnerability.patch similarity index 93% rename from Bukkit-Patches/0018-Add-Getter-for-Entity-Invulnerability.patch rename to Bukkit-Patches/0017-Add-Getter-for-Entity-Invulnerability.patch index 0d48f56365..32902bada2 100644 --- a/Bukkit-Patches/0018-Add-Getter-for-Entity-Invulnerability.patch +++ b/Bukkit-Patches/0017-Add-Getter-for-Entity-Invulnerability.patch @@ -1,4 +1,4 @@ -From f71dbed41b95b2db2780fc240a9788736f6e19ab Mon Sep 17 00:00:00 2001 +From 2b0c15a4f33f6f6f08f59c0245675a45a83ac572 Mon Sep 17 00:00:00 2001 From: md_5 Date: Sat, 3 Aug 2013 19:49:36 +1000 Subject: [PATCH] Add Getter for Entity Invulnerability diff --git a/CraftBukkit b/CraftBukkit index fdc56564e2..22f47a805a 160000 --- a/CraftBukkit +++ b/CraftBukkit @@ -1 +1 @@ -Subproject commit fdc56564e248dc0797696c8f6463c2ffda781035 +Subproject commit 22f47a805a23edd6aa202aa78a85149bf1dfcc99 diff --git a/CraftBukkit-Patches/0001-POM-Changes.patch b/CraftBukkit-Patches/0001-POM-Changes.patch index 604abdb8e7..db839f0561 100644 --- a/CraftBukkit-Patches/0001-POM-Changes.patch +++ b/CraftBukkit-Patches/0001-POM-Changes.patch @@ -1,11 +1,11 @@ -From f286b76dd6551fc08ca2f1a0a83e3498f2454cd9 Mon Sep 17 00:00:00 2001 +From 798b905a01eca318b3579cd5127edc42cce24c26 Mon Sep 17 00:00:00 2001 From: md_5 Date: Tue, 2 Jul 2013 13:07:39 +1000 Subject: [PATCH] POM Changes diff --git a/pom.xml b/pom.xml -index a46ecbd..0e6c422 100644 +index f23621d..825c821 100644 --- a/pom.xml +++ b/pom.xml @@ -1,12 +1,20 @@ @@ -25,7 +25,7 @@ index a46ecbd..0e6c422 100644 + org.spigotmc + spigot jar - 1.6.2-R0.2-SNAPSHOT + 1.6.2-R1.1-SNAPSHOT - CraftBukkit - http://www.bukkit.org + Spigot diff --git a/CraftBukkit-Patches/0029-BungeeCord-Support.patch b/CraftBukkit-Patches/0029-BungeeCord-Support.patch index 7068f6afab..724dd898bb 100644 --- a/CraftBukkit-Patches/0029-BungeeCord-Support.patch +++ b/CraftBukkit-Patches/0029-BungeeCord-Support.patch @@ -1,4 +1,4 @@ -From 1c934e1c78a8d17c3517bbcf230dc728aeeefe88 Mon Sep 17 00:00:00 2001 +From ba5620ccf386fd94ddce7fe2158550ece485f03a Mon Sep 17 00:00:00 2001 From: md_5 Date: Sat, 23 Mar 2013 11:15:11 +1100 Subject: [PATCH] BungeeCord Support @@ -28,10 +28,10 @@ index 7f2c1a9..5593b62 100644 + // Spigot end } diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java -index 0f17c90..388acf9 100644 +index 5dafeaf..a85fc5b 100644 --- a/src/main/java/net/minecraft/server/PlayerList.java +++ b/src/main/java/net/minecraft/server/PlayerList.java -@@ -295,7 +295,7 @@ public abstract class PlayerList { +@@ -296,7 +296,7 @@ public abstract class PlayerList { // depending on the outcome. EntityPlayer entity = new EntityPlayer(this.server, this.server.getWorldServer(0), s, this.server.O() ? new DemoPlayerInteractManager(this.server.getWorldServer(0)) : new PlayerInteractManager(this.server.getWorldServer(0))); Player player = entity.getBukkitEntity(); diff --git a/CraftBukkit-Patches/0031-Enable-Improved-Ping-Sending.patch b/CraftBukkit-Patches/0031-Enable-Improved-Ping-Sending.patch index b9c5b8f525..7a3f565e75 100644 --- a/CraftBukkit-Patches/0031-Enable-Improved-Ping-Sending.patch +++ b/CraftBukkit-Patches/0031-Enable-Improved-Ping-Sending.patch @@ -1,4 +1,4 @@ -From 0a8a33e98273e97eed1086de950036935d1cd42a Mon Sep 17 00:00:00 2001 +From c46ce6480300baa0776e9783f66f5dfdd027cadf Mon Sep 17 00:00:00 2001 From: Aikar Date: Sun, 24 Feb 2013 20:45:20 +1100 Subject: [PATCH] Enable Improved Ping Sending @@ -17,10 +17,10 @@ index 58e5217..f9ac1e1 100644 public EntityPlayer(MinecraftServer minecraftserver, World world, String s, PlayerInteractManager playerinteractmanager) { diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java -index 388acf9..b7b1c45 100644 +index a85fc5b..20b9c5d 100644 --- a/src/main/java/net/minecraft/server/PlayerList.java +++ b/src/main/java/net/minecraft/server/PlayerList.java -@@ -719,6 +719,25 @@ public abstract class PlayerList { +@@ -720,6 +720,25 @@ public abstract class PlayerList { this.sendAll(new Packet201PlayerInfo(entityplayer.getName(), true, entityplayer.ping)); } // CraftBukkit end */ diff --git a/CraftBukkit-Patches/0041-Prevent-Shutdown-Hang.patch b/CraftBukkit-Patches/0041-Prevent-Shutdown-Hang.patch index 26b3e1adeb..300d78722e 100644 --- a/CraftBukkit-Patches/0041-Prevent-Shutdown-Hang.patch +++ b/CraftBukkit-Patches/0041-Prevent-Shutdown-Hang.patch @@ -1,4 +1,4 @@ -From fb7a0b89a5948ad072b6b47c7cfbf24d58290fe2 Mon Sep 17 00:00:00 2001 +From 0dc0c332b02bfa4d76bc029e89a6c59f28b13198 Mon Sep 17 00:00:00 2001 From: md_5 Date: Tue, 11 Jun 2013 11:54:32 +1000 Subject: [PATCH] Prevent Shutdown Hang @@ -6,10 +6,10 @@ Subject: [PATCH] Prevent Shutdown Hang Prevents server hanging if players disconnect during the shutdown sequence. diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java -index f0bc5c4..16df7ae 100644 +index 20b9c5d..a85157b 100644 --- a/src/main/java/net/minecraft/server/PlayerList.java +++ b/src/main/java/net/minecraft/server/PlayerList.java -@@ -1063,7 +1063,14 @@ public abstract class PlayerList { +@@ -1064,7 +1064,14 @@ public abstract class PlayerList { public void r() { while (!this.players.isEmpty()) { diff --git a/CraftBukkit-Patches/0049-Configurable-Messages.patch b/CraftBukkit-Patches/0049-Configurable-Messages.patch index 102a8cf33a..d01ac9c995 100644 --- a/CraftBukkit-Patches/0049-Configurable-Messages.patch +++ b/CraftBukkit-Patches/0049-Configurable-Messages.patch @@ -1,4 +1,4 @@ -From e87093815494e4ca3a4c9d1f7f85bc918a60b278 Mon Sep 17 00:00:00 2001 +From bd3a9ccfa048c4e5f99c2add256cdca7789a5a07 Mon Sep 17 00:00:00 2001 From: md_5 Date: Fri, 21 Jun 2013 19:21:58 +1000 Subject: [PATCH] Configurable Messages @@ -21,10 +21,10 @@ index 5e9dad2..9deb9d1 100644 } else { this.loginKey = this.server.getOnlineMode() ? Long.toString(random.nextLong(), 16) : "-"; diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java -index 38e0c5b..262682d 100644 +index a85157b..e5a259d 100644 --- a/src/main/java/net/minecraft/server/PlayerList.java +++ b/src/main/java/net/minecraft/server/PlayerList.java -@@ -309,7 +309,7 @@ public abstract class PlayerList { +@@ -310,7 +310,7 @@ public abstract class PlayerList { event.disallow(PlayerLoginEvent.Result.KICK_BANNED, s1); } else if (!this.isWhitelisted(s)) { @@ -33,7 +33,7 @@ index 38e0c5b..262682d 100644 } else { String s2 = socketaddress.toString(); -@@ -325,7 +325,7 @@ public abstract class PlayerList { +@@ -326,7 +326,7 @@ public abstract class PlayerList { event.disallow(PlayerLoginEvent.Result.KICK_BANNED, s3); } else if (this.players.size() >= this.maxPlayers) { diff --git a/CraftBukkit-Patches/0058-Entity-Mount-and-Dismount-Events.patch b/CraftBukkit-Patches/0057-Entity-Mount-and-Dismount-Events.patch similarity index 96% rename from CraftBukkit-Patches/0058-Entity-Mount-and-Dismount-Events.patch rename to CraftBukkit-Patches/0057-Entity-Mount-and-Dismount-Events.patch index d0d8738e4f..826cee4cea 100644 --- a/CraftBukkit-Patches/0058-Entity-Mount-and-Dismount-Events.patch +++ b/CraftBukkit-Patches/0057-Entity-Mount-and-Dismount-Events.patch @@ -1,11 +1,11 @@ -From f7d44988922838f78b93465580dc27ec4e8067bb Mon Sep 17 00:00:00 2001 +From b77192c2e8533c8be00f0beeb661b62849c35110 Mon Sep 17 00:00:00 2001 From: md_5 Date: Tue, 2 Jul 2013 20:32:49 +1000 Subject: [PATCH] Entity Mount and Dismount Events diff --git a/src/main/java/net/minecraft/server/Entity.java b/src/main/java/net/minecraft/server/Entity.java -index 9c737ec..ee1ce90 100644 +index fe856fc..60c2221 100644 --- a/src/main/java/net/minecraft/server/Entity.java +++ b/src/main/java/net/minecraft/server/Entity.java @@ -1427,6 +1427,7 @@ public abstract class Entity { diff --git a/CraftBukkit-Patches/0057-Silence-End-of-Stream-Errors.patch b/CraftBukkit-Patches/0057-Silence-End-of-Stream-Errors.patch deleted file mode 100644 index ad714fe8e7..0000000000 --- a/CraftBukkit-Patches/0057-Silence-End-of-Stream-Errors.patch +++ /dev/null @@ -1,22 +0,0 @@ -From d28b69277fa9bed23920302ea95067c175e5e11f Mon Sep 17 00:00:00 2001 -From: md_5 -Date: Tue, 2 Jul 2013 13:51:38 +1000 -Subject: [PATCH] Silence End of Stream Errors - - -diff --git a/src/main/java/net/minecraft/server/Packet.java b/src/main/java/net/minecraft/server/Packet.java -index 391c6fc..b5e0261 100644 ---- a/src/main/java/net/minecraft/server/Packet.java -+++ b/src/main/java/net/minecraft/server/Packet.java -@@ -112,7 +112,7 @@ public abstract class Packet { - ++o; - p += (long) packet.a(); - } catch (EOFException eofexception) { -- iconsolelogmanager.severe("Reached end of stream for " + socket.getInetAddress()); -+ // iconsolelogmanager.severe("Reached end of stream for " + socket.getInetAddress()); // Spigot - too spammy - return null; - } - --- -1.8.1.2 - diff --git a/CraftBukkit-Patches/0059-Colour-Console-Messages.patch b/CraftBukkit-Patches/0058-Colour-Console-Messages.patch similarity index 92% rename from CraftBukkit-Patches/0059-Colour-Console-Messages.patch rename to CraftBukkit-Patches/0058-Colour-Console-Messages.patch index 9bd5d37d5f..99e949d74e 100644 --- a/CraftBukkit-Patches/0059-Colour-Console-Messages.patch +++ b/CraftBukkit-Patches/0058-Colour-Console-Messages.patch @@ -1,4 +1,4 @@ -From b27b1cb7d8b50442631a95271b364bc41e38a0c0 Mon Sep 17 00:00:00 2001 +From 33ca90c41ee7904b893c767d1ea6e66f55c83778 Mon Sep 17 00:00:00 2001 From: md_5 Date: Thu, 4 Jul 2013 10:11:46 +1000 Subject: [PATCH] Colour Console Messages diff --git a/CraftBukkit-Patches/0060-Properly-Consume-Bonemeal-in-Dispensers.patch b/CraftBukkit-Patches/0059-Properly-Consume-Bonemeal-in-Dispensers.patch similarity index 97% rename from CraftBukkit-Patches/0060-Properly-Consume-Bonemeal-in-Dispensers.patch rename to CraftBukkit-Patches/0059-Properly-Consume-Bonemeal-in-Dispensers.patch index 3534eb1893..820fead1d9 100644 --- a/CraftBukkit-Patches/0060-Properly-Consume-Bonemeal-in-Dispensers.patch +++ b/CraftBukkit-Patches/0059-Properly-Consume-Bonemeal-in-Dispensers.patch @@ -1,4 +1,4 @@ -From 3e68f19219ef911b0c48d121fabe3bf34f4d8a02 Mon Sep 17 00:00:00 2001 +From 43da205a1bc25ac30b44a6367b7d7f35ebe90818 Mon Sep 17 00:00:00 2001 From: Alex Ciuba Date: Mon, 10 Jun 2013 16:04:38 -0400 Subject: [PATCH] Properly Consume Bonemeal in Dispensers diff --git a/CraftBukkit-Patches/0061-Prevent-Ghost-Players-Caused-by-Plugins.patch b/CraftBukkit-Patches/0060-Prevent-Ghost-Players-Caused-by-Plugins.patch similarity index 86% rename from CraftBukkit-Patches/0061-Prevent-Ghost-Players-Caused-by-Plugins.patch rename to CraftBukkit-Patches/0060-Prevent-Ghost-Players-Caused-by-Plugins.patch index bb2a831788..c8380e0c15 100644 --- a/CraftBukkit-Patches/0061-Prevent-Ghost-Players-Caused-by-Plugins.patch +++ b/CraftBukkit-Patches/0060-Prevent-Ghost-Players-Caused-by-Plugins.patch @@ -1,4 +1,4 @@ -From 20c689599b300747b7b102d0ef48e917b3e6ffdb Mon Sep 17 00:00:00 2001 +From 3d38cee38e3984d42237d7353b000051be2be0c6 Mon Sep 17 00:00:00 2001 From: Alex Ciuba Date: Tue, 11 Jun 2013 15:23:03 -0400 Subject: [PATCH] Prevent Ghost Players Caused by Plugins @@ -6,10 +6,10 @@ Subject: [PATCH] Prevent Ghost Players Caused by Plugins Check if the player is still connected after firing event. Fixes BUKKIT-4327 diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java -index 79c3b98..971cfa5 100644 +index e5a259d..bb13b41 100644 --- a/src/main/java/net/minecraft/server/PlayerList.java +++ b/src/main/java/net/minecraft/server/PlayerList.java -@@ -422,6 +422,9 @@ public abstract class PlayerList { +@@ -423,6 +423,9 @@ public abstract class PlayerList { Player respawnPlayer = this.cserver.getPlayer(entityplayer1); PlayerRespawnEvent respawnEvent = new PlayerRespawnEvent(respawnPlayer, location, isBedSpawn); this.cserver.getPluginManager().callEvent(respawnEvent); diff --git a/CraftBukkit-Patches/0063-Entity-ticking-chunk-caching.patch b/CraftBukkit-Patches/0061-Entity-ticking-chunk-caching.patch similarity index 98% rename from CraftBukkit-Patches/0063-Entity-ticking-chunk-caching.patch rename to CraftBukkit-Patches/0061-Entity-ticking-chunk-caching.patch index 3f0c37c7a8..ee4e21e6f8 100644 --- a/CraftBukkit-Patches/0063-Entity-ticking-chunk-caching.patch +++ b/CraftBukkit-Patches/0061-Entity-ticking-chunk-caching.patch @@ -1,4 +1,4 @@ -From 26354fbb3ff5283b869fb241c465d508539f8b6c Mon Sep 17 00:00:00 2001 +From ea70179245470f2baf92f73a45c87e36e654edbc Mon Sep 17 00:00:00 2001 From: Ammar Askar Date: Tue, 16 Jul 2013 03:32:32 +0500 Subject: [PATCH] Entity ticking chunk caching diff --git a/CraftBukkit-Patches/0062-Console-Command-Completion.patch b/CraftBukkit-Patches/0062-Console-Command-Completion.patch deleted file mode 100644 index 5fb6d98296..0000000000 --- a/CraftBukkit-Patches/0062-Console-Command-Completion.patch +++ /dev/null @@ -1,89 +0,0 @@ -From f0b905b9c4e67f0594a46c19bcab3f9d70984fcb Mon Sep 17 00:00:00 2001 -From: Phillip Schichtel -Date: Fri, 5 Jul 2013 21:55:00 +1000 -Subject: [PATCH] Console Command Completion - -changed exception handling -wrapped the tab completion in a waitable to sync it with the main thread -Implement command tab completion in the console. Adds BUKKIT-4168 - -Even though JLine provides an API for tab completion, there was still now tab -completion for console commands. -This commit implements tab completion in the console by providing the -ConsoleReader with a Completer implementation. - -diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java -index c4fc9d0..de4a430 100644 ---- a/src/main/java/net/minecraft/server/PlayerList.java -+++ b/src/main/java/net/minecraft/server/PlayerList.java -@@ -17,6 +17,7 @@ import java.util.Map.Entry; - import org.bukkit.craftbukkit.CraftServer; - import org.bukkit.craftbukkit.CraftWorld; - import org.bukkit.craftbukkit.chunkio.ChunkIOExecutor; -+import org.bukkit.craftbukkit.command.ConsoleCommandCompleter; - - import org.bukkit.Bukkit; - import org.bukkit.Location; -@@ -55,6 +56,7 @@ public abstract class PlayerList { - public PlayerList(MinecraftServer minecraftserver) { - minecraftserver.server = new CraftServer(minecraftserver, this); - minecraftserver.console = org.bukkit.craftbukkit.command.ColouredConsoleSender.getInstance(); -+ minecraftserver.reader.addCompleter(new ConsoleCommandCompleter(minecraftserver.server)); - this.cserver = minecraftserver.server; - // CraftBukkit end - -diff --git a/src/main/java/org/bukkit/craftbukkit/command/ConsoleCommandCompleter.java b/src/main/java/org/bukkit/craftbukkit/command/ConsoleCommandCompleter.java -new file mode 100644 -index 0000000..a889ff3 ---- /dev/null -+++ b/src/main/java/org/bukkit/craftbukkit/command/ConsoleCommandCompleter.java -@@ -0,0 +1,46 @@ -+package org.bukkit.craftbukkit.command; -+ -+import jline.console.completer.Completer; -+import org.bukkit.craftbukkit.CraftServer; -+import org.bukkit.craftbukkit.util.Waitable; -+ -+import java.util.List; -+import java.util.concurrent.ExecutionException; -+import java.util.logging.Level; -+ -+public class ConsoleCommandCompleter implements Completer { -+ private final CraftServer server; -+ -+ public ConsoleCommandCompleter(CraftServer server) { -+ this.server = server; -+ } -+ -+ public int complete(final String buffer, final int cursor, final List candidates) { -+ Waitable> waitable = new Waitable>() { -+ @Override -+ protected List evaluate() { -+ return server.getCommandMap().tabComplete(server.getConsoleSender(), buffer); -+ } -+ }; -+ this.server.getServer().processQueue.add(waitable); -+ try { -+ List offers = waitable.get(); -+ if (offers == null) { -+ return cursor; -+ } -+ candidates.addAll(offers); -+ -+ final int lastSpace = buffer.lastIndexOf(' '); -+ if (lastSpace == -1) { -+ return cursor - buffer.length(); -+ } else { -+ return cursor - (buffer.length() - lastSpace - 1); -+ } -+ } catch (ExecutionException e) { -+ this.server.getLogger().log(Level.WARNING, "Unhandled exception when tab completing", e); -+ } catch (InterruptedException e) { -+ Thread.currentThread().interrupt(); -+ } -+ return cursor; -+ } -+} --- -1.8.1.2 - diff --git a/CraftBukkit-Patches/0064-Plug-World-Unload-Memory-Leak.patch b/CraftBukkit-Patches/0062-Plug-World-Unload-Memory-Leak.patch similarity index 92% rename from CraftBukkit-Patches/0064-Plug-World-Unload-Memory-Leak.patch rename to CraftBukkit-Patches/0062-Plug-World-Unload-Memory-Leak.patch index 675e8a8d11..964ad6a224 100644 --- a/CraftBukkit-Patches/0064-Plug-World-Unload-Memory-Leak.patch +++ b/CraftBukkit-Patches/0062-Plug-World-Unload-Memory-Leak.patch @@ -1,4 +1,4 @@ -From 54c3ceea8ea9090db66f89766911761c7b403c17 Mon Sep 17 00:00:00 2001 +From e5bd78ed743866ec5f4f420dd52958e0f282c92e Mon Sep 17 00:00:00 2001 From: md_5 Date: Sat, 3 Aug 2013 19:02:59 +1000 Subject: [PATCH] Plug World Unload Memory Leak diff --git a/CraftBukkit-Patches/0065-Player-Collision-API.patch b/CraftBukkit-Patches/0063-Player-Collision-API.patch similarity index 98% rename from CraftBukkit-Patches/0065-Player-Collision-API.patch rename to CraftBukkit-Patches/0063-Player-Collision-API.patch index 32b3f76838..11cca54d57 100644 --- a/CraftBukkit-Patches/0065-Player-Collision-API.patch +++ b/CraftBukkit-Patches/0063-Player-Collision-API.patch @@ -1,4 +1,4 @@ -From 1d4628a69a0585ad73dda98159ccbe810a9a0da5 Mon Sep 17 00:00:00 2001 +From a9a560dff16cb6e448c85a9f664bab13a424e463 Mon Sep 17 00:00:00 2001 From: md_5 Date: Sat, 3 Aug 2013 19:27:07 +1000 Subject: [PATCH] Player Collision API diff --git a/CraftBukkit-Patches/0066-Fully-Disable-Snooper-When-Not-Required.patch b/CraftBukkit-Patches/0064-Fully-Disable-Snooper-When-Not-Required.patch similarity index 93% rename from CraftBukkit-Patches/0066-Fully-Disable-Snooper-When-Not-Required.patch rename to CraftBukkit-Patches/0064-Fully-Disable-Snooper-When-Not-Required.patch index 4fe49cd629..c19db6ea26 100644 --- a/CraftBukkit-Patches/0066-Fully-Disable-Snooper-When-Not-Required.patch +++ b/CraftBukkit-Patches/0064-Fully-Disable-Snooper-When-Not-Required.patch @@ -1,4 +1,4 @@ -From 576ae6ea5b3348156429e5a72987eaf6184be3df Mon Sep 17 00:00:00 2001 +From 327957a56aa86e4278af0f73d85ad1e6d225ecbf Mon Sep 17 00:00:00 2001 From: agentk20 Date: Sat, 3 Aug 2013 19:28:48 +1000 Subject: [PATCH] Fully Disable Snooper When Not Required diff --git a/CraftBukkit-Patches/0067-Add-Getter-for-Entity-Invulnerability.patch b/CraftBukkit-Patches/0065-Add-Getter-for-Entity-Invulnerability.patch similarity index 92% rename from CraftBukkit-Patches/0067-Add-Getter-for-Entity-Invulnerability.patch rename to CraftBukkit-Patches/0065-Add-Getter-for-Entity-Invulnerability.patch index fe8c9e9bf6..b3fdde1a65 100644 --- a/CraftBukkit-Patches/0067-Add-Getter-for-Entity-Invulnerability.patch +++ b/CraftBukkit-Patches/0065-Add-Getter-for-Entity-Invulnerability.patch @@ -1,4 +1,4 @@ -From b587388cf6df919971622d6b67d78f7750928231 Mon Sep 17 00:00:00 2001 +From 8a9ef0403468ad7597e4b0e70ae3a61a18bf88b0 Mon Sep 17 00:00:00 2001 From: DerFlash Date: Sat, 3 Aug 2013 19:53:48 +1000 Subject: [PATCH] Add Getter for Entity Invulnerability diff --git a/CraftBukkit-Patches/0068-Guard-entity-list.patch b/CraftBukkit-Patches/0066-Guard-entity-list.patch similarity index 97% rename from CraftBukkit-Patches/0068-Guard-entity-list.patch rename to CraftBukkit-Patches/0066-Guard-entity-list.patch index 4e1a4a2c72..c574e960d7 100644 --- a/CraftBukkit-Patches/0068-Guard-entity-list.patch +++ b/CraftBukkit-Patches/0066-Guard-entity-list.patch @@ -1,4 +1,4 @@ -From c3d0cccd2b134602ccc7b99039b308efa4c360ee Mon Sep 17 00:00:00 2001 +From 284f5650477cb3ccaedd228fbaa6439e8a8e8bd9 Mon Sep 17 00:00:00 2001 From: Ammar Askar Date: Sat, 3 Aug 2013 21:42:00 +0500 Subject: [PATCH] Guard entity list diff --git a/CraftBukkit-Patches/0069-Cap-Minimum-Player-Speed.patch b/CraftBukkit-Patches/0067-Cap-Minimum-Player-Speed.patch similarity index 94% rename from CraftBukkit-Patches/0069-Cap-Minimum-Player-Speed.patch rename to CraftBukkit-Patches/0067-Cap-Minimum-Player-Speed.patch index 2ddb1916ec..ff6cc53f36 100644 --- a/CraftBukkit-Patches/0069-Cap-Minimum-Player-Speed.patch +++ b/CraftBukkit-Patches/0067-Cap-Minimum-Player-Speed.patch @@ -1,4 +1,4 @@ -From 20ef1354a9a56fd07cfbd6285273acaf7d1edfa2 Mon Sep 17 00:00:00 2001 +From d11fddbdd62a2be3e66fc9623661403ffcd17faf Mon Sep 17 00:00:00 2001 From: md_5 Date: Mon, 5 Aug 2013 20:17:20 +1000 Subject: [PATCH] Cap Minimum Player Speed