Paper/CraftBukkit-Patches/0061-Arrow-Despawn-Rate.patch

39 lines
1.4 KiB
Diff
Raw Normal View History

2013-12-13 00:10:33 +00:00
From 25863dd229b23ef3052c3373fc8af4d94a1a3c76 Mon Sep 17 00:00:00 2001
2013-10-14 08:20:28 +00:00
From: md_5 <md_5@live.com.au>
Date: Mon, 14 Oct 2013 19:20:10 +1100
Subject: [PATCH] Arrow Despawn Rate
diff --git a/src/main/java/net/minecraft/server/EntityArrow.java b/src/main/java/net/minecraft/server/EntityArrow.java
2013-12-01 03:40:53 +00:00
index 3fd3de9..a49519b 100644
2013-10-14 08:20:28 +00:00
--- a/src/main/java/net/minecraft/server/EntityArrow.java
+++ b/src/main/java/net/minecraft/server/EntityArrow.java
2013-12-01 03:40:53 +00:00
@@ -141,7 +141,7 @@ public class EntityArrow extends Entity implements IProjectile {
2013-10-14 08:20:28 +00:00
2013-12-01 03:40:53 +00:00
if (block == this.g && i == this.h) {
2013-10-14 08:20:28 +00:00
++this.j;
- if (this.j == 1200) {
+ if (this.j == world.spigotConfig.arrowDespawnRate) { // Spigot
this.die();
}
} else {
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
2013-12-13 00:10:33 +00:00
index 0b4e527..447581d 100644
2013-10-14 08:20:28 +00:00
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
2013-12-13 00:10:33 +00:00
@@ -199,4 +199,11 @@ public class SpigotWorldConfig
2013-10-14 08:20:28 +00:00
itemDespawnRate = getInt( "item-despawn-rate", 6000 );
log( "Item Despawn Rate: " + itemDespawnRate );
}
+
+ public int arrowDespawnRate;
+ private void arrowDespawnRate()
+ {
+ arrowDespawnRate = getInt( "arrow-despawn-rate", 1200 );
+ log( "Arrow Despawn Rate: " + arrowDespawnRate );
+ }
}
--
2013-12-01 03:40:53 +00:00
1.8.3.2
2013-10-14 08:20:28 +00:00