2015-02-28 12:36:22 +01:00
|
|
|
From c9433b9cc24018bc3fb0c172a7792aebc8bbf536 Mon Sep 17 00:00:00 2001
|
2014-07-21 22:46:54 +02: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
|
2015-02-28 12:36:22 +01:00
|
|
|
index 01c66e3..46f6374 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityArrow.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityArrow.java
|
2014-11-28 02:17:45 +01:00
|
|
|
@@ -155,7 +155,7 @@ public class EntityArrow extends Entity implements IProjectile {
|
2014-07-21 22:46:54 +02:00
|
|
|
|
|
|
|
if (block == this.g && i == this.h) {
|
2015-02-28 12:36:22 +01:00
|
|
|
++this.ar;
|
|
|
|
- if (this.ar >= 1200) {
|
|
|
|
+ if (this.ar >= world.spigotConfig.arrowDespawnRate) { // Spigot - First int after shooter
|
2014-07-21 22:46:54 +02:00
|
|
|
this.die();
|
|
|
|
}
|
2015-02-28 12:36:22 +01:00
|
|
|
} else {
|
2014-07-21 22:46:54 +02:00
|
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
2015-02-26 11:40:16 +01:00
|
|
|
index a5786ea..af0c4b2 100644
|
2014-07-21 22:46:54 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
|
|
@@ -205,4 +205,11 @@ public class SpigotWorldConfig
|
|
|
|
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 );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
2014-11-28 02:17:45 +01:00
|
|
|
2.1.0
|
2014-07-21 22:46:54 +02:00
|
|
|
|