diff --git a/Spigot-Server-Patches/0014-Configurable-fishing-time-ranges.patch b/Spigot-Server-Patches/0013-Configurable-fishing-time-ranges.patch similarity index 96% rename from Spigot-Server-Patches/0014-Configurable-fishing-time-ranges.patch rename to Spigot-Server-Patches/0013-Configurable-fishing-time-ranges.patch index 83b0c063bb..ce49bfb4f9 100644 --- a/Spigot-Server-Patches/0014-Configurable-fishing-time-ranges.patch +++ b/Spigot-Server-Patches/0013-Configurable-fishing-time-ranges.patch @@ -1,4 +1,4 @@ -From a219468eb44541f05fc0209db98f8f8b65bdc108 Mon Sep 17 00:00:00 2001 +From 2cd548a4147654425d101a8a112cc59fe6f9314d Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Fri, 28 Nov 2014 01:29:35 -0600 Subject: [PATCH] Configurable fishing time ranges diff --git a/Spigot-Server-Patches/0013-Fix-directional-TNT-bias.patch b/Spigot-Server-Patches/0013-Fix-directional-TNT-bias.patch deleted file mode 100644 index 9d405e6f78..0000000000 --- a/Spigot-Server-Patches/0013-Fix-directional-TNT-bias.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 77ab7df400008e421f7415601732e94efcfc636d Mon Sep 17 00:00:00 2001 -From: Iceee -Date: Fri, 11 Jul 2014 03:54:06 -0500 -Subject: [PATCH] Fix directional TNT bias - - -diff --git a/src/main/java/net/minecraft/server/EntityTNTPrimed.java b/src/main/java/net/minecraft/server/EntityTNTPrimed.java -index 3621faf..4823698 100644 ---- a/src/main/java/net/minecraft/server/EntityTNTPrimed.java -+++ b/src/main/java/net/minecraft/server/EntityTNTPrimed.java -@@ -18,11 +18,11 @@ public class EntityTNTPrimed extends Entity { - public EntityTNTPrimed(World world, double d0, double d1, double d2, EntityLiving entityliving) { - this(world); - this.setPosition(d0, d1, d2); -- float f = (float) (Math.random() * 3.1415927410125732D * 2.0D); -+ //float f = (float) (Math.random() * 3.1415927410125732D * 2.0D); // PaperSpigot - Fix directional TNT bias - -- this.motX = (double) (-((float) Math.sin((double) f)) * 0.02F); -+ this.motX = 0; // PaperSpigot - Fix directional TNT bias //(double) (-((float) Math.sin((double) f)) * 0.02F); - this.motY = 0.20000000298023224D; -- this.motZ = (double) (-((float) Math.cos((double) f)) * 0.02F); -+ this.motZ = 0; // PaperSpigot - Fix directional TNT bias //(double) (-((float) Math.cos((double) f)) * 0.02F); - this.fuseTicks = 80; - this.lastX = d0; - this.lastY = d1; --- -1.9.5.msysgit.0 - diff --git a/Spigot-Server-Patches/0015-Allow-nerfed-mobs-to-jump.patch b/Spigot-Server-Patches/0014-Allow-nerfed-mobs-to-jump.patch similarity index 93% rename from Spigot-Server-Patches/0015-Allow-nerfed-mobs-to-jump.patch rename to Spigot-Server-Patches/0014-Allow-nerfed-mobs-to-jump.patch index 382cdfe2c3..0f6a6c8640 100644 --- a/Spigot-Server-Patches/0015-Allow-nerfed-mobs-to-jump.patch +++ b/Spigot-Server-Patches/0014-Allow-nerfed-mobs-to-jump.patch @@ -1,4 +1,4 @@ -From 025da359b8d3bb8c4afcb13eb2a5830e78283097 Mon Sep 17 00:00:00 2001 +From d31ec5cfef234a997563a3c58639f8bd6830bfdf Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Sun, 29 Jun 2014 13:32:36 -0500 Subject: [PATCH] Allow nerfed mobs to jump diff --git a/Spigot-Server-Patches/0016-Toggle-for-player-interact-limiter.patch b/Spigot-Server-Patches/0015-Toggle-for-player-interact-limiter.patch similarity index 95% rename from Spigot-Server-Patches/0016-Toggle-for-player-interact-limiter.patch rename to Spigot-Server-Patches/0015-Toggle-for-player-interact-limiter.patch index 986de69322..4012a95f04 100644 --- a/Spigot-Server-Patches/0016-Toggle-for-player-interact-limiter.patch +++ b/Spigot-Server-Patches/0015-Toggle-for-player-interact-limiter.patch @@ -1,11 +1,11 @@ -From deda4bb20fd6b6aa6839d3f5ffdcd92b8cac8d61 Mon Sep 17 00:00:00 2001 +From 0f98d5f5793dde56cee3130d5d418e28d2412fdb Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Fri, 28 Nov 2014 01:33:25 -0600 Subject: [PATCH] Toggle for player interact limiter diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java -index 5c17e44..69efb4f 100644 +index a09e793..a7c629b 100644 --- a/src/main/java/net/minecraft/server/PlayerConnection.java +++ b/src/main/java/net/minecraft/server/PlayerConnection.java @@ -626,7 +626,8 @@ public class PlayerConnection implements PacketListenerPlayIn, IUpdatePlayerList diff --git a/Spigot-Server-Patches/0017-Player-Exhaustion-Multipliers.patch b/Spigot-Server-Patches/0016-Player-Exhaustion-Multipliers.patch similarity index 97% rename from Spigot-Server-Patches/0017-Player-Exhaustion-Multipliers.patch rename to Spigot-Server-Patches/0016-Player-Exhaustion-Multipliers.patch index 265fa30785..f3737c7f53 100644 --- a/Spigot-Server-Patches/0017-Player-Exhaustion-Multipliers.patch +++ b/Spigot-Server-Patches/0016-Player-Exhaustion-Multipliers.patch @@ -1,4 +1,4 @@ -From 354488007bdff51cbc37667320cfeb68432de2cd Mon Sep 17 00:00:00 2001 +From 3a70598613bfb2b290ff383bd1f0a91fc012c4e0 Mon Sep 17 00:00:00 2001 From: gsand Date: Fri, 28 Nov 2014 01:41:54 -0600 Subject: [PATCH] Player Exhaustion Multipliers diff --git a/Spigot-Server-Patches/0018-Add-configurable-despawn-distances-for-living-entiti.patch b/Spigot-Server-Patches/0017-Add-configurable-despawn-distances-for-living-entiti.patch similarity index 98% rename from Spigot-Server-Patches/0018-Add-configurable-despawn-distances-for-living-entiti.patch rename to Spigot-Server-Patches/0017-Add-configurable-despawn-distances-for-living-entiti.patch index 99aeeab8f9..d4ea73f046 100644 --- a/Spigot-Server-Patches/0018-Add-configurable-despawn-distances-for-living-entiti.patch +++ b/Spigot-Server-Patches/0017-Add-configurable-despawn-distances-for-living-entiti.patch @@ -1,4 +1,4 @@ -From eebbac57234fdb36d364372ad595d354f3ed09b9 Mon Sep 17 00:00:00 2001 +From 149b5f2a1899cf88e34c194342b625fbc7f54eac Mon Sep 17 00:00:00 2001 From: Suddenly Date: Fri, 28 Nov 2014 01:49:53 -0600 Subject: [PATCH] Add configurable despawn distances for living entities diff --git a/Spigot-Server-Patches/0019-Allow-for-toggling-of-spawn-chunks.patch b/Spigot-Server-Patches/0018-Allow-for-toggling-of-spawn-chunks.patch similarity index 95% rename from Spigot-Server-Patches/0019-Allow-for-toggling-of-spawn-chunks.patch rename to Spigot-Server-Patches/0018-Allow-for-toggling-of-spawn-chunks.patch index e619284260..faa7bf4ec3 100644 --- a/Spigot-Server-Patches/0019-Allow-for-toggling-of-spawn-chunks.patch +++ b/Spigot-Server-Patches/0018-Allow-for-toggling-of-spawn-chunks.patch @@ -1,11 +1,11 @@ -From ee72aae8f02c2bb498dac033036a830b7feaf0fe Mon Sep 17 00:00:00 2001 +From da87cfffb5d8d8c4d73a35760ededba300fc1c2c Mon Sep 17 00:00:00 2001 From: Dmck2b Date: Fri, 28 Nov 2014 01:53:14 -0600 Subject: [PATCH] Allow for toggling of spawn chunks diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java -index 2920d56..ba37e02 100644 +index f85700f..60cdf2e 100644 --- a/src/main/java/net/minecraft/server/World.java +++ b/src/main/java/net/minecraft/server/World.java @@ -219,6 +219,7 @@ public abstract class World implements IBlockAccess { diff --git a/Spigot-Server-Patches/0020-Drop-falling-block-entities-that-are-above-the-speci.patch b/Spigot-Server-Patches/0019-Drop-falling-block-entities-that-are-above-the-speci.patch similarity index 79% rename from Spigot-Server-Patches/0020-Drop-falling-block-entities-that-are-above-the-speci.patch rename to Spigot-Server-Patches/0019-Drop-falling-block-entities-that-are-above-the-speci.patch index e75effc676..01f7dae804 100644 --- a/Spigot-Server-Patches/0020-Drop-falling-block-entities-that-are-above-the-speci.patch +++ b/Spigot-Server-Patches/0019-Drop-falling-block-entities-that-are-above-the-speci.patch @@ -1,4 +1,4 @@ -From 523316f92cef57584b2bbb7eedc4ef05eafa13db Mon Sep 17 00:00:00 2001 +From a0cbd2c7aa88d123844823389a1542ebb9f3851e Mon Sep 17 00:00:00 2001 From: Byteflux Date: Fri, 28 Nov 2014 02:03:43 -0600 Subject: [PATCH] Drop falling block entities that are above the specified @@ -28,21 +28,20 @@ index fd78677..81a5dc9 100644 this.motY *= 0.9800000190734863D; this.motZ *= 0.9800000190734863D; diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -index 00303dc..5306e9a 100644 +index 00303dc..4b384bf 100644 --- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java +++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -@@ -146,4 +146,14 @@ public class PaperSpigotWorldConfig +@@ -146,4 +146,13 @@ public class PaperSpigotWorldConfig keepSpawnInMemory = getBoolean( "keep-spawn-loaded", true ); log( "Keep spawn chunk loaded: " + keepSpawnInMemory ); } + -+ public double fallingBlockHeightNerf; ++ public int fallingBlockHeightNerf; + private void fallingBlockheightNerf() + { -+ // Technically a little disingenuous as it applies to all falling blocks but alas, backwards compat prevails! -+ fallingBlockHeightNerf = getDouble( "tnt-entity-height-nerf", 0 ); ++ fallingBlockHeightNerf = getInt( "falling-block-height-nerf", 0 ); + if (fallingBlockHeightNerf != 0) { -+ log( "TNT/Falling Block Height Limit set to Y: " + fallingBlockHeightNerf); ++ log( "Falling Block Height Limit set to Y: " + fallingBlockHeightNerf); + } + } } diff --git a/Spigot-Server-Patches/0021-Configurable-speed-for-water-flowing-over-lava.patch b/Spigot-Server-Patches/0020-Configurable-speed-for-water-flowing-over-lava.patch similarity index 91% rename from Spigot-Server-Patches/0021-Configurable-speed-for-water-flowing-over-lava.patch rename to Spigot-Server-Patches/0020-Configurable-speed-for-water-flowing-over-lava.patch index 6fb1e5b81a..9f0a0659c9 100644 --- a/Spigot-Server-Patches/0021-Configurable-speed-for-water-flowing-over-lava.patch +++ b/Spigot-Server-Patches/0020-Configurable-speed-for-water-flowing-over-lava.patch @@ -1,4 +1,4 @@ -From 8d89115daeb46ccbbdbf237fc1f05cb511871503 Mon Sep 17 00:00:00 2001 +From 54b9feb9bc83830fb78462796e18eef583566b32 Mon Sep 17 00:00:00 2001 From: Byteflux Date: Fri, 28 Nov 2014 02:31:02 -0600 Subject: [PATCH] Configurable speed for water flowing over lava @@ -43,11 +43,11 @@ index 5184715..bc4cee5 100644 + } } diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -index 5306e9a..670f78f 100644 +index 4b384bf..3b55750 100644 --- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java +++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -@@ -156,4 +156,11 @@ public class PaperSpigotWorldConfig - log( "TNT/Falling Block Height Limit set to Y: " + fallingBlockHeightNerf); +@@ -155,4 +155,11 @@ public class PaperSpigotWorldConfig + log( "Falling Block Height Limit set to Y: " + fallingBlockHeightNerf); } } + diff --git a/Spigot-Server-Patches/0023-Player-affects-spawning-API.patch b/Spigot-Server-Patches/0021-Player-affects-spawning-API.patch similarity index 98% rename from Spigot-Server-Patches/0023-Player-affects-spawning-API.patch rename to Spigot-Server-Patches/0021-Player-affects-spawning-API.patch index af430dec0d..fcd2ed469b 100644 --- a/Spigot-Server-Patches/0023-Player-affects-spawning-API.patch +++ b/Spigot-Server-Patches/0021-Player-affects-spawning-API.patch @@ -1,4 +1,4 @@ -From 8bc83195afec263e5e6e5a72d87f1d0a98348749 Mon Sep 17 00:00:00 2001 +From cb66a69be962f8aeeca6af180305442dc985c027 Mon Sep 17 00:00:00 2001 From: Jedediah Smith Date: Fri, 28 Nov 2014 03:31:21 -0600 Subject: [PATCH] Player affects spawning API @@ -67,7 +67,7 @@ index 43954b3..932a572 100644 biomemeta = worldserver.a(enumcreaturetype, blockposition2); if (biomemeta == null) { diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java -index 22a8b59..a105351 100644 +index 60cdf2e..26f4d96 100644 --- a/src/main/java/net/minecraft/server/World.java +++ b/src/main/java/net/minecraft/server/World.java @@ -2,14 +2,13 @@ package net.minecraft.server; @@ -94,7 +94,7 @@ index 22a8b59..a105351 100644 import org.bukkit.craftbukkit.SpigotTimings; // Spigot import org.bukkit.generator.ChunkGenerator; import org.bukkit.craftbukkit.CraftServer; -@@ -2775,6 +2773,50 @@ public abstract class World implements IBlockAccess { +@@ -2769,6 +2767,50 @@ public abstract class World implements IBlockAccess { return false; } diff --git a/Spigot-Server-Patches/0022-Center-TNT-grid-sample-points.patch b/Spigot-Server-Patches/0022-Center-TNT-grid-sample-points.patch deleted file mode 100644 index 6e289800d4..0000000000 --- a/Spigot-Server-Patches/0022-Center-TNT-grid-sample-points.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 01e10685a9d781cec3a70951baa46b907202a29a Mon Sep 17 00:00:00 2001 -From: Jedediah Smith -Date: Fri, 28 Nov 2014 02:36:18 -0600 -Subject: [PATCH] Center TNT grid sample points - - -diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java -index ba37e02..22a8b59 100644 ---- a/src/main/java/net/minecraft/server/World.java -+++ b/src/main/java/net/minecraft/server/World.java -@@ -1875,6 +1875,12 @@ public abstract class World implements IBlockAccess { - double d1 = 1.0D / ((axisalignedbb.e - axisalignedbb.b) * 2.0D + 1.0D); - double d2 = 1.0D / ((axisalignedbb.f - axisalignedbb.c) * 2.0D + 1.0D); - -+ // PaperSpigot start - Center TNT sample points for more accurate calculations -+ // Shift the sample points so they are centered on the BB -+ double xOffset = (1.0 - Math.floor(1.0 / d0) * d0) / 2.0; -+ double zOffset = (1.0 - Math.floor(1.0 / d2) * d2) / 2.0; -+ // PaperSpigot end -+ - if (d0 >= 0.0D && d1 >= 0.0D && d2 >= 0.0D) { - int i = 0; - int j = 0; -@@ -1886,7 +1892,7 @@ public abstract class World implements IBlockAccess { - double d4 = axisalignedbb.b + (axisalignedbb.e - axisalignedbb.b) * (double) f1; - double d5 = axisalignedbb.c + (axisalignedbb.f - axisalignedbb.c) * (double) f2; - -- if (this.rayTrace(new Vec3D(d3, d4, d5), vec3d) == null) { -+ if (this.rayTrace(new Vec3D(xOffset, d4, zOffset + d5), vec3d) == null) { // PaperSpigot - Center TNT sample points - ++i; - } - --- -1.9.5.msysgit.0 - diff --git a/Spigot-Server-Patches/0024-Show-PaperSpigot-in-client-crashes-server-lists-and-.patch b/Spigot-Server-Patches/0022-Show-PaperSpigot-in-client-crashes-server-lists-and-.patch similarity index 91% rename from Spigot-Server-Patches/0024-Show-PaperSpigot-in-client-crashes-server-lists-and-.patch rename to Spigot-Server-Patches/0022-Show-PaperSpigot-in-client-crashes-server-lists-and-.patch index 457babe92d..61e7fb3a6b 100644 --- a/Spigot-Server-Patches/0024-Show-PaperSpigot-in-client-crashes-server-lists-and-.patch +++ b/Spigot-Server-Patches/0022-Show-PaperSpigot-in-client-crashes-server-lists-and-.patch @@ -1,4 +1,4 @@ -From c353c92f3435e1a7ae166172936b75d0732a414a Mon Sep 17 00:00:00 2001 +From 8a53e3c8579c132d53f8d85f5fc2df322450374f Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Tue, 19 Aug 2014 14:21:37 -0500 Subject: [PATCH] Show 'PaperSpigot' in client crashes, server lists, and @@ -19,5 +19,5 @@ index 7e91511..fbc2e61 100644 public CrashReport b(CrashReport crashreport) { -- -2.3.0 +1.9.5.msysgit.0 diff --git a/Spigot-Server-Patches/0025-RIP-metrics.patch b/Spigot-Server-Patches/0023-RIP-metrics.patch similarity index 99% rename from Spigot-Server-Patches/0025-RIP-metrics.patch rename to Spigot-Server-Patches/0023-RIP-metrics.patch index 8b95342deb..7fa22b7b24 100644 --- a/Spigot-Server-Patches/0025-RIP-metrics.patch +++ b/Spigot-Server-Patches/0023-RIP-metrics.patch @@ -1,4 +1,4 @@ -From 507f9ffecad6d490ced5ae89eadb7369e1bfbecb Mon Sep 17 00:00:00 2001 +From f0a774c60ae25b1dfec79c60c95843f5d3418982 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Tue, 19 Aug 2014 14:25:40 -0500 Subject: [PATCH] RIP metrics @@ -687,5 +687,5 @@ index c03388d..eeb1aec 100644 static void readConfig(Class clazz, Object instance) -- -2.2.2 +1.9.5.msysgit.0 diff --git a/Spigot-Server-Patches/0026-Remove-invalid-mob-spawner-tile-entities.patch b/Spigot-Server-Patches/0024-Remove-invalid-mob-spawner-tile-entities.patch similarity index 91% rename from Spigot-Server-Patches/0026-Remove-invalid-mob-spawner-tile-entities.patch rename to Spigot-Server-Patches/0024-Remove-invalid-mob-spawner-tile-entities.patch index 1666d4d207..0c6b5b989a 100644 --- a/Spigot-Server-Patches/0026-Remove-invalid-mob-spawner-tile-entities.patch +++ b/Spigot-Server-Patches/0024-Remove-invalid-mob-spawner-tile-entities.patch @@ -1,11 +1,11 @@ -From 6904cc9f13c765652bec13688c575815fc914f78 Mon Sep 17 00:00:00 2001 +From d9c73f504f132d34904c1445fa9391823b96c3d3 Mon Sep 17 00:00:00 2001 From: Byteflux Date: Fri, 28 Nov 2014 03:43:14 -0600 Subject: [PATCH] Remove invalid mob spawner tile entities diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java -index c50ab45..234d2c8 100644 +index b76b446..2d99252 100644 --- a/src/main/java/net/minecraft/server/Chunk.java +++ b/src/main/java/net/minecraft/server/Chunk.java @@ -756,6 +756,11 @@ public class Chunk { @@ -21,10 +21,10 @@ index c50ab45..234d2c8 100644 } else { System.out.println("Attempted to place a tile entity (" + tileentity + ") at " + tileentity.position.getX() + "," + tileentity.position.getY() + "," + tileentity.position.getZ() diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -index 670f78f..0642f12 100644 +index 3b55750..59a9387 100644 --- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java +++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -@@ -163,4 +163,11 @@ public class PaperSpigotWorldConfig +@@ -162,4 +162,11 @@ public class PaperSpigotWorldConfig waterOverLavaFlowSpeed = getInt( "water-over-lava-flow-speed", 5 ); log( "Water over lava flow speed: " + waterOverLavaFlowSpeed ); } diff --git a/Spigot-Server-Patches/0027-Optimize-TileEntity-Ticking.patch b/Spigot-Server-Patches/0025-Optimize-TileEntity-Ticking.patch similarity index 99% rename from Spigot-Server-Patches/0027-Optimize-TileEntity-Ticking.patch rename to Spigot-Server-Patches/0025-Optimize-TileEntity-Ticking.patch index 816db98adb..a8f62cd9b2 100644 --- a/Spigot-Server-Patches/0027-Optimize-TileEntity-Ticking.patch +++ b/Spigot-Server-Patches/0025-Optimize-TileEntity-Ticking.patch @@ -1,4 +1,4 @@ -From f239a7099cb973e65d130657977527269e7d3d32 Mon Sep 17 00:00:00 2001 +From a54f2fe608b2d5ccbc117dec28be3531eda48ca5 Mon Sep 17 00:00:00 2001 From: Aikar Date: Fri, 28 Nov 2014 04:14:14 -0600 Subject: [PATCH] Optimize TileEntity Ticking @@ -74,7 +74,7 @@ index 7b6f8ae..c6b593f 100644 if (this.e instanceof BlockDaylightDetector) { ((BlockDaylightDetector) this.e).d(this.world, this.position); diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java -index a105351..b59e88a 100644 +index 26f4d96..7730e2c 100644 --- a/src/main/java/net/minecraft/server/World.java +++ b/src/main/java/net/minecraft/server/World.java @@ -3,13 +3,7 @@ package net.minecraft.server; diff --git a/Spigot-Server-Patches/0028-Move-sound-handling-out-of-the-chest-tick-loop.patch b/Spigot-Server-Patches/0026-Move-sound-handling-out-of-the-chest-tick-loop.patch similarity index 99% rename from Spigot-Server-Patches/0028-Move-sound-handling-out-of-the-chest-tick-loop.patch rename to Spigot-Server-Patches/0026-Move-sound-handling-out-of-the-chest-tick-loop.patch index 6f7de4f012..3f87bd8987 100644 --- a/Spigot-Server-Patches/0028-Move-sound-handling-out-of-the-chest-tick-loop.patch +++ b/Spigot-Server-Patches/0026-Move-sound-handling-out-of-the-chest-tick-loop.patch @@ -1,4 +1,4 @@ -From 329cf8e6cb3aed1ba4b212e5a368d3642615e4c7 Mon Sep 17 00:00:00 2001 +From e82339befdcab7f8c3956e3ff9f6c0d2d8785f93 Mon Sep 17 00:00:00 2001 From: Iceee Date: Fri, 28 Nov 2014 11:56:55 -0600 Subject: [PATCH] Move sound handling out of the chest tick loop diff --git a/Spigot-Server-Patches/0029-Remove-specific-entities-that-fly-through-an-unloade.patch b/Spigot-Server-Patches/0027-Remove-specific-entities-that-fly-through-an-unloade.patch similarity index 96% rename from Spigot-Server-Patches/0029-Remove-specific-entities-that-fly-through-an-unloade.patch rename to Spigot-Server-Patches/0027-Remove-specific-entities-that-fly-through-an-unloade.patch index 7f269be508..fccb5f1e38 100644 --- a/Spigot-Server-Patches/0029-Remove-specific-entities-that-fly-through-an-unloade.patch +++ b/Spigot-Server-Patches/0027-Remove-specific-entities-that-fly-through-an-unloade.patch @@ -1,4 +1,4 @@ -From 55bbadaa2107d3a9e7635abbb11dc5807a0420b7 Mon Sep 17 00:00:00 2001 +From 2ac679151195e7aa1b660fde7949474282daee34 Mon Sep 17 00:00:00 2001 From: Iceee Date: Fri, 28 Nov 2014 12:11:03 -0600 Subject: [PATCH] Remove specific entities that fly through an unloaded chunk @@ -51,7 +51,7 @@ index 81a5dc9..336e575 100644 if (this.world.paperSpigotConfig.fallingBlockHeightNerf != 0 && this.locY > this.world.paperSpigotConfig.fallingBlockHeightNerf) { if (this.dropItem) { diff --git a/src/main/java/net/minecraft/server/EntityTNTPrimed.java b/src/main/java/net/minecraft/server/EntityTNTPrimed.java -index 4823698..7b856ef 100644 +index 3621faf..287039c 100644 --- a/src/main/java/net/minecraft/server/EntityTNTPrimed.java +++ b/src/main/java/net/minecraft/server/EntityTNTPrimed.java @@ -47,6 +47,14 @@ public class EntityTNTPrimed extends Entity { @@ -70,7 +70,7 @@ index 4823698..7b856ef 100644 this.motY *= 0.9800000190734863D; this.motZ *= 0.9800000190734863D; diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java -index b59e88a..c350281 100644 +index 7730e2c..1933f5f 100644 --- a/src/main/java/net/minecraft/server/World.java +++ b/src/main/java/net/minecraft/server/World.java @@ -1158,6 +1158,7 @@ public abstract class World implements IBlockAccess { @@ -97,10 +97,10 @@ index b59e88a..c350281 100644 entity.tickTimer.startTiming(); // Spigot // CraftBukkit end diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -index 0642f12..9507ab5 100644 +index 59a9387..cffb145 100644 --- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java +++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -@@ -170,4 +170,14 @@ public class PaperSpigotWorldConfig +@@ -169,4 +169,14 @@ public class PaperSpigotWorldConfig removeInvalidMobSpawnerTEs = getBoolean( "remove-invalid-mob-spawner-tile-entities", true ); log( "Remove invalid mob spawner tile entities: " + removeInvalidMobSpawnerTEs ); } diff --git a/Spigot-Server-Patches/0030-Configurable-strength-and-weakness-effect-modifiers.patch b/Spigot-Server-Patches/0028-Configurable-strength-and-weakness-effect-modifiers.patch similarity index 96% rename from Spigot-Server-Patches/0030-Configurable-strength-and-weakness-effect-modifiers.patch rename to Spigot-Server-Patches/0028-Configurable-strength-and-weakness-effect-modifiers.patch index 3e78fd8689..7df815e811 100644 --- a/Spigot-Server-Patches/0030-Configurable-strength-and-weakness-effect-modifiers.patch +++ b/Spigot-Server-Patches/0028-Configurable-strength-and-weakness-effect-modifiers.patch @@ -1,4 +1,4 @@ -From 6929e63583a63e15680ce543596b0271b74e1635 Mon Sep 17 00:00:00 2001 +From eb2be3ee1ac1079e5023e8b9de83f4e86bb9b5a9 Mon Sep 17 00:00:00 2001 From: gsand Date: Fri, 28 Nov 2014 12:23:02 -0600 Subject: [PATCH] Configurable strength and weakness effect modifiers diff --git a/Spigot-Server-Patches/0031-Temporary-fix-for-rails-dupe.patch b/Spigot-Server-Patches/0029-Temporary-fix-for-rails-dupe.patch similarity index 94% rename from Spigot-Server-Patches/0031-Temporary-fix-for-rails-dupe.patch rename to Spigot-Server-Patches/0029-Temporary-fix-for-rails-dupe.patch index 4ee600819b..5e9260087c 100644 --- a/Spigot-Server-Patches/0031-Temporary-fix-for-rails-dupe.patch +++ b/Spigot-Server-Patches/0029-Temporary-fix-for-rails-dupe.patch @@ -1,4 +1,4 @@ -From e20a0fb77d352bd22f55070452b35d5731e2d64d Mon Sep 17 00:00:00 2001 +From 713d5992f6f6777bd71ea4a98295c757aa98b81e Mon Sep 17 00:00:00 2001 From: Dmck2b Date: Fri, 28 Nov 2014 12:30:47 -0600 Subject: [PATCH] Temporary fix for rails dupe diff --git a/Spigot-Server-Patches/0032-Further-improve-server-tick-loop.patch b/Spigot-Server-Patches/0030-Further-improve-server-tick-loop.patch similarity index 99% rename from Spigot-Server-Patches/0032-Further-improve-server-tick-loop.patch rename to Spigot-Server-Patches/0030-Further-improve-server-tick-loop.patch index fd434e0434..b9b33e59b4 100644 --- a/Spigot-Server-Patches/0032-Further-improve-server-tick-loop.patch +++ b/Spigot-Server-Patches/0030-Further-improve-server-tick-loop.patch @@ -1,4 +1,4 @@ -From 43723d4317f9fc2ed6bdce8ef090b9847e236bbf Mon Sep 17 00:00:00 2001 +From 26e30543319472acad2768609c97c4ee485e30d4 Mon Sep 17 00:00:00 2001 From: Aikar Date: Fri, 28 Nov 2014 12:48:26 -0600 Subject: [PATCH] Further improve server tick loop @@ -212,5 +212,5 @@ index be2e31d..21fd7ef 100644 return ( ( tps > 18.0 ) ? ChatColor.GREEN : ( tps > 16.0 ) ? ChatColor.YELLOW : ChatColor.RED ).toString() + ( ( tps > 20.0 ) ? "*" : "" ) + Math.min( Math.round( tps * 100.0 ) / 100.0, 20.0 ); -- -2.3.0 +1.9.5.msysgit.0 diff --git a/Spigot-Server-Patches/0033-Only-refresh-abilities-if-needed.patch b/Spigot-Server-Patches/0031-Only-refresh-abilities-if-needed.patch similarity index 94% rename from Spigot-Server-Patches/0033-Only-refresh-abilities-if-needed.patch rename to Spigot-Server-Patches/0031-Only-refresh-abilities-if-needed.patch index 9510d01a5d..1c7676d4ad 100644 --- a/Spigot-Server-Patches/0033-Only-refresh-abilities-if-needed.patch +++ b/Spigot-Server-Patches/0031-Only-refresh-abilities-if-needed.patch @@ -1,4 +1,4 @@ -From ed8b2184c38475b4f496c6c6db4bfd636b87b8e6 Mon Sep 17 00:00:00 2001 +From b787bc58e8224d8db379608f104cd935f17889fc Mon Sep 17 00:00:00 2001 From: Aikar Date: Fri, 28 Nov 2014 13:20:22 -0600 Subject: [PATCH] Only refresh abilities if needed diff --git a/Spigot-Server-Patches/0034-Player-lookup-improvements.patch b/Spigot-Server-Patches/0032-Player-lookup-improvements.patch similarity index 97% rename from Spigot-Server-Patches/0034-Player-lookup-improvements.patch rename to Spigot-Server-Patches/0032-Player-lookup-improvements.patch index a5ed7406e9..1ce78afed2 100644 --- a/Spigot-Server-Patches/0034-Player-lookup-improvements.patch +++ b/Spigot-Server-Patches/0032-Player-lookup-improvements.patch @@ -1,4 +1,4 @@ -From af4ebcf09a2982aea9de423e717a3868b25effea Mon Sep 17 00:00:00 2001 +From a658e1ae5cb763266cc2e3edeaea49ba6082656e Mon Sep 17 00:00:00 2001 From: Aikar Date: Fri, 28 Nov 2014 13:43:11 -0600 Subject: [PATCH] Player lookup improvements @@ -13,7 +13,7 @@ By using a map based approach for player lookups, player lookup should be consistent in performance regardless of how many players are online. diff --git a/src/main/java/net/minecraft/server/PlayerList.java b/src/main/java/net/minecraft/server/PlayerList.java -index 9e9bccf..535e43b 100644 +index 1693efc..d3f2dfe 100644 --- a/src/main/java/net/minecraft/server/PlayerList.java +++ b/src/main/java/net/minecraft/server/PlayerList.java @@ -49,6 +49,31 @@ public abstract class PlayerList { @@ -82,7 +82,7 @@ index 9e9bccf..535e43b 100644 savePlayerFile(entityplayer); // CraftBukkit - Force the player's inventory to be saved entityplayer.playerConnection.disconnect("You logged in from another location"); } -@@ -967,6 +998,7 @@ public abstract class PlayerList { +@@ -966,6 +997,7 @@ public abstract class PlayerList { } public EntityPlayer getPlayer(String s) { @@ -171,5 +171,5 @@ index 0c9f241..e7c61fd 100644 public InetSocketAddress getAddress() { -- -2.2.2 +1.9.5.msysgit.0 diff --git a/Spigot-Server-Patches/0035-Configurable-game-mechanics-changes.patch b/Spigot-Server-Patches/0033-Configurable-game-mechanics-changes.patch similarity index 95% rename from Spigot-Server-Patches/0035-Configurable-game-mechanics-changes.patch rename to Spigot-Server-Patches/0033-Configurable-game-mechanics-changes.patch index 94b87e3f7f..b7110bcee0 100644 --- a/Spigot-Server-Patches/0035-Configurable-game-mechanics-changes.patch +++ b/Spigot-Server-Patches/0033-Configurable-game-mechanics-changes.patch @@ -1,4 +1,4 @@ -From 3d4f74eca88c363209d02f64020a781597420236 Mon Sep 17 00:00:00 2001 +From ba5e12d756d97484b9e742104f3f6668b37f7681 Mon Sep 17 00:00:00 2001 From: gsand Date: Fri, 28 Nov 2014 13:53:48 -0600 Subject: [PATCH] Configurable game mechanics changes @@ -63,10 +63,10 @@ index dc4f526..45b5ac5 100644 + } } diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -index 9507ab5..7f02e29 100644 +index cffb145..bdf06fb 100644 --- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java +++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -@@ -180,4 +180,10 @@ public class PaperSpigotWorldConfig +@@ -179,4 +179,10 @@ public class PaperSpigotWorldConfig removeUnloadedTNTEntities = getBoolean( "remove-unloaded.tnt-entities", true ); removeUnloadedFallingBlocks = getBoolean( "remove-unloaded.falling-blocks", true ); } diff --git a/Spigot-Server-Patches/0036-Add-async-chunk-load-API.patch b/Spigot-Server-Patches/0034-Add-async-chunk-load-API.patch similarity index 95% rename from Spigot-Server-Patches/0036-Add-async-chunk-load-API.patch rename to Spigot-Server-Patches/0034-Add-async-chunk-load-API.patch index 59d73980ad..71ea5d9860 100644 --- a/Spigot-Server-Patches/0036-Add-async-chunk-load-API.patch +++ b/Spigot-Server-Patches/0034-Add-async-chunk-load-API.patch @@ -1,4 +1,4 @@ -From 54ddb82a4005cb701c1fc141b212afd14f597bde Mon Sep 17 00:00:00 2001 +From fedfc18c899bf25bc429f7417f496020f50388f7 Mon Sep 17 00:00:00 2001 From: Aikar Date: Thu, 6 Nov 2014 18:29:20 -0600 Subject: [PATCH] Add async chunk load API diff --git a/Spigot-Server-Patches/0038-Allow-specified-ItemStacks-to-retain-their-invalid-d.patch b/Spigot-Server-Patches/0035-Allow-specified-ItemStacks-to-retain-their-invalid-d.patch similarity index 96% rename from Spigot-Server-Patches/0038-Allow-specified-ItemStacks-to-retain-their-invalid-d.patch rename to Spigot-Server-Patches/0035-Allow-specified-ItemStacks-to-retain-their-invalid-d.patch index 8860b39fc1..4aee83136d 100644 --- a/Spigot-Server-Patches/0038-Allow-specified-ItemStacks-to-retain-their-invalid-d.patch +++ b/Spigot-Server-Patches/0035-Allow-specified-ItemStacks-to-retain-their-invalid-d.patch @@ -1,11 +1,11 @@ -From bd555ed341785d0de3e363096cae37d788b7b403 Mon Sep 17 00:00:00 2001 +From b7a7da6495b1dab1ef146167cfc36203b44d7d4a Mon Sep 17 00:00:00 2001 From: Byteflux Date: Sun, 30 Nov 2014 18:58:07 -0600 Subject: [PATCH] Allow specified ItemStacks to retain their invalid data diff --git a/src/main/java/net/minecraft/server/ItemStack.java b/src/main/java/net/minecraft/server/ItemStack.java -index 596db09..5e8f1c7 100644 +index 169706e..fa6178b 100644 --- a/src/main/java/net/minecraft/server/ItemStack.java +++ b/src/main/java/net/minecraft/server/ItemStack.java @@ -17,6 +17,8 @@ import org.bukkit.entity.Player; diff --git a/Spigot-Server-Patches/0039-Add-TNT-source-location-API.patch b/Spigot-Server-Patches/0036-Add-TNT-source-location-API.patch similarity index 97% rename from Spigot-Server-Patches/0039-Add-TNT-source-location-API.patch rename to Spigot-Server-Patches/0036-Add-TNT-source-location-API.patch index 395d5d3244..1c65fd0cba 100644 --- a/Spigot-Server-Patches/0039-Add-TNT-source-location-API.patch +++ b/Spigot-Server-Patches/0036-Add-TNT-source-location-API.patch @@ -1,4 +1,4 @@ -From cecc2d146aafd4f69e0d390f094655acfe974e6a Mon Sep 17 00:00:00 2001 +From 4bf725b31996da8637cb5efce367e6d55e84aaf7 Mon Sep 17 00:00:00 2001 From: Aikar Date: Sun, 30 Nov 2014 22:57:18 -0600 Subject: [PATCH] Add TNT source location API @@ -42,7 +42,7 @@ index 6d02141..3e5a77f 100644 world.addEntity(entitytntprimed); diff --git a/src/main/java/net/minecraft/server/EntityTNTPrimed.java b/src/main/java/net/minecraft/server/EntityTNTPrimed.java -index b5763bb..611bac8 100644 +index 287039c..ddff5a8 100644 --- a/src/main/java/net/minecraft/server/EntityTNTPrimed.java +++ b/src/main/java/net/minecraft/server/EntityTNTPrimed.java @@ -8,15 +8,23 @@ public class EntityTNTPrimed extends Entity { @@ -69,7 +69,7 @@ index b5763bb..611bac8 100644 + public EntityTNTPrimed(org.bukkit.Location loc, World world, double d0, double d1, double d2, EntityLiving entityliving) { + this(loc, world); this.setPosition(d0, d1, d2); - //float f = (float) (Math.random() * 3.1415927410125732D * 2.0D); // PaperSpigot - Fix directional TNT bias + float f = (float) (Math.random() * 3.1415927410125732D * 2.0D); @@ -96,10 +104,25 @@ public class EntityTNTPrimed extends Entity { diff --git a/Spigot-Server-Patches/0040-Add-a-constructor-for-setting-header-and-footer.patch b/Spigot-Server-Patches/0037-Add-a-constructor-for-setting-header-and-footer.patch similarity index 94% rename from Spigot-Server-Patches/0040-Add-a-constructor-for-setting-header-and-footer.patch rename to Spigot-Server-Patches/0037-Add-a-constructor-for-setting-header-and-footer.patch index 21269fab73..be791f85a1 100644 --- a/Spigot-Server-Patches/0040-Add-a-constructor-for-setting-header-and-footer.patch +++ b/Spigot-Server-Patches/0037-Add-a-constructor-for-setting-header-and-footer.patch @@ -1,4 +1,4 @@ -From 3f217e4361be07e0c8e4766310f6304c21f66c4c Mon Sep 17 00:00:00 2001 +From 52f989f6e94a23192a2d76e4d84d100f5d5dfb85 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Fri, 5 Dec 2014 22:44:50 -0600 Subject: [PATCH] Add a constructor for setting header and footer diff --git a/Spigot-Server-Patches/0037-Configurable-TNT-water-movement.patch b/Spigot-Server-Patches/0037-Configurable-TNT-water-movement.patch deleted file mode 100644 index ad1cf06f93..0000000000 --- a/Spigot-Server-Patches/0037-Configurable-TNT-water-movement.patch +++ /dev/null @@ -1,41 +0,0 @@ -From b7ae0052d97f71cd39b386d8039a74a14c272306 Mon Sep 17 00:00:00 2001 -From: Byteflux -Date: Sat, 29 Nov 2014 23:05:52 -0800 -Subject: [PATCH] Configurable TNT water movement - - -diff --git a/src/main/java/net/minecraft/server/EntityTNTPrimed.java b/src/main/java/net/minecraft/server/EntityTNTPrimed.java -index 7b856ef..b5763bb 100644 ---- a/src/main/java/net/minecraft/server/EntityTNTPrimed.java -+++ b/src/main/java/net/minecraft/server/EntityTNTPrimed.java -@@ -109,4 +109,12 @@ public class EntityTNTPrimed extends Entity { - public float getHeadHeight() { - return 0.0F; - } -+ -+ /** -+ * PaperSpigot - Configurable TNT water movement -+ */ -+ @Override -+ public boolean aK() { -+ return world.paperSpigotConfig.tntMovesInWater; -+ } - } -diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -index 7f02e29..74d1017 100644 ---- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -@@ -186,4 +186,10 @@ public class PaperSpigotWorldConfig - { - boatsDropBoats = getBoolean( "game-mechanics.boats-drop-boats", false ); - } -+ -+ public boolean tntMovesInWater; -+ private void tntMovesInWater() -+ { -+ tntMovesInWater = getBoolean("tnt-moves-in-water", true ); -+ } - } --- -1.9.5.msysgit.0 - diff --git a/Spigot-Server-Patches/0041-Remove-CraftBukkit-Feature-of-ItemStack-s-having-inf.patch b/Spigot-Server-Patches/0038-Remove-CraftBukkit-Feature-of-ItemStack-s-having-inf.patch similarity index 98% rename from Spigot-Server-Patches/0041-Remove-CraftBukkit-Feature-of-ItemStack-s-having-inf.patch rename to Spigot-Server-Patches/0038-Remove-CraftBukkit-Feature-of-ItemStack-s-having-inf.patch index f30fb8ffac..cc7c7eae8e 100644 --- a/Spigot-Server-Patches/0041-Remove-CraftBukkit-Feature-of-ItemStack-s-having-inf.patch +++ b/Spigot-Server-Patches/0038-Remove-CraftBukkit-Feature-of-ItemStack-s-having-inf.patch @@ -1,4 +1,4 @@ -From 7fb18d989c5d335b8686f0ef4ba9f519a4ed0234 Mon Sep 17 00:00:00 2001 +From 21634289a89ad5e111cfd9314ee98038484c16d2 Mon Sep 17 00:00:00 2001 From: Aikar Date: Fri, 19 Dec 2014 16:28:22 -0600 Subject: [PATCH] Remove CraftBukkit "Feature" of ItemStack's having infinite @@ -66,7 +66,7 @@ index 0199856..4f3bc3c 100644 } diff --git a/src/main/java/net/minecraft/server/ItemStack.java b/src/main/java/net/minecraft/server/ItemStack.java -index e5af375..4084dd3 100644 +index fa6178b..9547b4d 100644 --- a/src/main/java/net/minecraft/server/ItemStack.java +++ b/src/main/java/net/minecraft/server/ItemStack.java @@ -73,6 +73,7 @@ public final class ItemStack { @@ -78,7 +78,7 @@ index e5af375..4084dd3 100644 } diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java -index 69efb4f..b73fa58 100644 +index a7c629b..ffcbfb2 100644 --- a/src/main/java/net/minecraft/server/PlayerConnection.java +++ b/src/main/java/net/minecraft/server/PlayerConnection.java @@ -735,7 +735,7 @@ public class PlayerConnection implements PacketListenerPlayIn, IUpdatePlayerList diff --git a/Spigot-Server-Patches/0042-Prevent-tile-entity-and-entity-crashes.patch b/Spigot-Server-Patches/0039-Prevent-tile-entity-and-entity-crashes.patch similarity index 97% rename from Spigot-Server-Patches/0042-Prevent-tile-entity-and-entity-crashes.patch rename to Spigot-Server-Patches/0039-Prevent-tile-entity-and-entity-crashes.patch index 2926567071..a91cfba09c 100644 --- a/Spigot-Server-Patches/0042-Prevent-tile-entity-and-entity-crashes.patch +++ b/Spigot-Server-Patches/0039-Prevent-tile-entity-and-entity-crashes.patch @@ -1,4 +1,4 @@ -From 66a31ac97a2475d69922718578ec3f410a4d8a67 Mon Sep 17 00:00:00 2001 +From 7b7a341c8b247ccffd179d4c79580701592fffef Mon Sep 17 00:00:00 2001 From: Aikar Date: Wed, 3 Jul 2013 08:29:26 -0400 Subject: [PATCH] Prevent tile entity and entity crashes @@ -24,7 +24,7 @@ index 76cdc7e..d976515 100644 crashreportsystemdetails.a("Actual block data value", (Callable) (new CrashReportTileEntityData(this))); } diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java -index c350281..e5e6030 100644 +index 1933f5f..e4a1bb2 100644 --- a/src/main/java/net/minecraft/server/World.java +++ b/src/main/java/net/minecraft/server/World.java @@ -1418,10 +1418,13 @@ public abstract class World implements IBlockAccess { diff --git a/Spigot-Server-Patches/0043-Configurable-top-of-nether-void-damage.patch b/Spigot-Server-Patches/0040-Configurable-top-of-nether-void-damage.patch similarity index 86% rename from Spigot-Server-Patches/0043-Configurable-top-of-nether-void-damage.patch rename to Spigot-Server-Patches/0040-Configurable-top-of-nether-void-damage.patch index da0bbd2450..4af2bd1a1e 100644 --- a/Spigot-Server-Patches/0043-Configurable-top-of-nether-void-damage.patch +++ b/Spigot-Server-Patches/0040-Configurable-top-of-nether-void-damage.patch @@ -1,6 +1,6 @@ -From 5941b0e2bfb3d341eb6d07832a2443f6193c495b Mon Sep 17 00:00:00 2001 +From 8037f86a24fd4ba5a90e088bc811bf4c810821a8 Mon Sep 17 00:00:00 2001 From: Zach Brown -Date: Thu, 29 Jan 2015 15:11:31 -0600 +Date: Mon, 23 Feb 2015 14:57:28 -0600 Subject: [PATCH] Configurable top of nether void damage @@ -32,12 +32,12 @@ index 4848e09..be59806 100644 } diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -index 74d1017..00a418b 100644 +index bdf06fb..a756395 100644 --- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java +++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java -@@ -192,4 +192,10 @@ public class PaperSpigotWorldConfig +@@ -185,4 +185,10 @@ public class PaperSpigotWorldConfig { - tntMovesInWater = getBoolean("tnt-moves-in-water", true ); + boatsDropBoats = getBoolean( "game-mechanics.boats-drop-boats", false ); } + + public boolean netherVoidTopDamage; diff --git a/Spigot-Server-Patches/0044-Enderman-drop-the-block-they-re-holding-when-they-di.patch b/Spigot-Server-Patches/0041-Enderman-drop-the-block-they-re-holding-when-they-di.patch similarity index 91% rename from Spigot-Server-Patches/0044-Enderman-drop-the-block-they-re-holding-when-they-di.patch rename to Spigot-Server-Patches/0041-Enderman-drop-the-block-they-re-holding-when-they-di.patch index 61d94f7c04..c8b6d5a4a7 100644 --- a/Spigot-Server-Patches/0044-Enderman-drop-the-block-they-re-holding-when-they-di.patch +++ b/Spigot-Server-Patches/0041-Enderman-drop-the-block-they-re-holding-when-they-di.patch @@ -1,4 +1,4 @@ -From 33ae554d6f47a2bae0f23671d84a7cc7c5d174ad Mon Sep 17 00:00:00 2001 +From 9cd798fbfcb245029b35c8caad7b2754ba38f553 Mon Sep 17 00:00:00 2001 From: Zach Date: Fri, 13 Feb 2015 14:49:30 -0600 Subject: [PATCH] Enderman drop the block they're holding when they die @@ -23,5 +23,5 @@ index fe198c9..6c85f3d 100644 public void setCarried(IBlockData iblockdata) { -- -2.3.0 +1.9.5.msysgit.0 diff --git a/Spigot-Server-Patches/0042-PaperSpigot-TNT-Changes.patch b/Spigot-Server-Patches/0042-PaperSpigot-TNT-Changes.patch new file mode 100644 index 0000000000..055659be00 --- /dev/null +++ b/Spigot-Server-Patches/0042-PaperSpigot-TNT-Changes.patch @@ -0,0 +1,146 @@ +From 825d2eb3b84c72194294491432a5f3625315ed31 Mon Sep 17 00:00:00 2001 +From: Zach Brown +Date: Mon, 23 Feb 2015 15:54:17 -0600 +Subject: [PATCH] PaperSpigot TNT Changes + +PaperSpigot communal TNT modification patch +Original authors for individual changes are listed w/in PaperSpigotWorldConfig + +diff --git a/src/main/java/net/minecraft/server/EntityTNTPrimed.java b/src/main/java/net/minecraft/server/EntityTNTPrimed.java +index ddff5a8..7c94d99 100644 +--- a/src/main/java/net/minecraft/server/EntityTNTPrimed.java ++++ b/src/main/java/net/minecraft/server/EntityTNTPrimed.java +@@ -36,6 +36,12 @@ public class EntityTNTPrimed extends Entity { + this.lastY = d1; + this.lastZ = d2; + this.source = entityliving; ++ ++ // PaperSpigot start - Fix TNT directional bias ++ if (this.world.paperSpigotConfig.fixTNTDirectionBias) { ++ this.motX = this.motZ = 0; ++ } ++ // PaperSpigot end + } + + protected void h() {} +@@ -63,6 +69,12 @@ public class EntityTNTPrimed extends Entity { + } + // PaperSpigot end + ++ // PaperSpigot start - Configurable TNT Height Limit ++ if (this.world.paperSpigotConfig.tntHeightLimit != 0 && this.locY > this.world.paperSpigotConfig.tntHeightLimit) { ++ this.die(); ++ } ++ // PaperSpigot end ++ + this.motX *= 0.9800000190734863D; + this.motY *= 0.9800000190734863D; + this.motZ *= 0.9800000190734863D; +@@ -97,7 +109,15 @@ public class EntityTNTPrimed extends Entity { + server.getPluginManager().callEvent(event); + + if (!event.isCancelled()) { +- this.world.createExplosion(this, this.locX, this.locY + (double) (this.length / 2.0F), this.locZ, event.getRadius(), event.getFire(), true); ++ // PaperSpigot start - Configurable legacy TNT explosion height ++ double locY = this.locY; ++ ++ if (!this.world.paperSpigotConfig.legacyTNTExplosionHeight) { ++ locY += this.length / 2.0F; ++ } ++ ++ this.world.createExplosion(this, this.locX, locY, this.locZ, event.getRadius(), event.getFire(), true); ++ // PaperSpigot end + } + // CraftBukkit end + } +@@ -132,4 +152,12 @@ public class EntityTNTPrimed extends Entity { + public float getHeadHeight() { + return 0.0F; + } ++ ++ /** ++ * PaperSpigot - Configurable TNT water movement ++ */ ++ @Override ++ public boolean aK() { ++ return world.paperSpigotConfig.tntMovesInWater; ++ } + } +diff --git a/src/main/java/net/minecraft/server/World.java b/src/main/java/net/minecraft/server/World.java +index e4a1bb2..7bac43c 100644 +--- a/src/main/java/net/minecraft/server/World.java ++++ b/src/main/java/net/minecraft/server/World.java +@@ -1888,6 +1888,11 @@ public abstract class World implements IBlockAccess { + double d1 = 1.0D / ((axisalignedbb.e - axisalignedbb.b) * 2.0D + 1.0D); + double d2 = 1.0D / ((axisalignedbb.f - axisalignedbb.c) * 2.0D + 1.0D); + ++ // PaperSpigot start - Fix TNT directional bias ++ double xOffset = (1.0 - Math.floor(1.0 / d0) * d0) / 2.0; ++ double zOffset = (1.0 - Math.floor(1.0 / d2) * d2) / 2.0; ++ // PaperSpigot end ++ + if (d0 >= 0.0D && d1 >= 0.0D && d2 >= 0.0D) { + int i = 0; + int j = 0; +@@ -1899,7 +1904,16 @@ public abstract class World implements IBlockAccess { + double d4 = axisalignedbb.b + (axisalignedbb.e - axisalignedbb.b) * (double) f1; + double d5 = axisalignedbb.c + (axisalignedbb.f - axisalignedbb.c) * (double) f2; + +- if (this.rayTrace(new Vec3D(d3, d4, d5), vec3d) == null) { ++ // PaperSpigot start - Fix TNT directional bias ++ Vec3D vec3d1; ++ if (this.paperSpigotConfig.fixTNTDirectionBias) { ++ vec3d1 = new Vec3D(xOffset, d4, zOffset + d5); ++ } else { ++ vec3d1 = new Vec3D(d3, d4, d5); ++ } ++ ++ if (this.rayTrace(vec3d1, vec3d) == null) { ++ // PaperSpigot end + ++i; + } + +diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java +index a756395..b2d8a03 100644 +--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java ++++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java +@@ -191,4 +191,36 @@ public class PaperSpigotWorldConfig + { + netherVoidTopDamage = getBoolean( "nether-ceiling-void-damage", false ); + } ++ ++ public boolean fixTNTDirectionBias; ++ public boolean tntMovesInWater; ++ public boolean legacyTNTExplosionHeight; ++ public int tntHeightLimit; ++ private void tntChanges() ++ { ++ // Original Authors: Iceee and Jedediah Smith ++ fixTNTDirectionBias = getBoolean( "tnt-gameplay.fix-directional-bias", false ); ++ // Original Author: Byteflux ++ tntMovesInWater = getBoolean( "tnt-gameplay.moves-in-water", true ); ++ // Original Author: Byteflux ++ legacyTNTExplosionHeight = getBoolean( "tnt-gameplay.legacy-explosion-height", false ); ++ // Original Author: Somebody \o/ ++ tntHeightLimit = getInt( "tnt-gameplay.tnt-entity-height-limit", 0 ); ++ ++ log( "Fix TNT directional bias: " + fixTNTDirectionBias ); ++ log( "TNT moves in water: " + tntMovesInWater ); ++ log( "Use legacy TNT explosion height " + legacyTNTExplosionHeight ); ++ if ( tntHeightLimit != 0 ) { ++ log( "TNT height limit set at " + tntHeightLimit ); ++ } else { ++ log( "TNT height limit disabled" ); ++ } ++ ++ if (PaperSpigotConfig.version < 7) { ++ System.err.println( "==========================================" ); ++ System.err.println( " Many TNT Related Settings Have Moved " ); ++ System.err.println( " Please check your config in paper.yml! " ); ++ System.err.println( "==========================================" ); ++ } ++ } + } +-- +1.9.5.msysgit.0 +