2016-03-01 01:23:45 +01:00
|
|
|
From a812d6abf9d591b6f9681f6e31af6bd8e176bafb 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
|
2016-02-29 22:33:06 +01:00
|
|
|
index a40f3ec..e40642f 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
|
2016-02-29 22:33:06 +01:00
|
|
|
@@ -144,7 +144,7 @@ public abstract class EntityArrow extends Entity implements IProjectile {
|
2014-07-21 22:46:54 +02:00
|
|
|
|
2016-02-29 22:33:06 +01:00
|
|
|
if (block == this.au && i == this.av) {
|
|
|
|
++this.aw;
|
|
|
|
- if (this.aw >= 1200) {
|
|
|
|
+ if (this.aw >= 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
|
2016-02-29 22:33:06 +01:00
|
|
|
index 89f9bc3..28643c5 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
|
2016-02-29 22:33:06 +01:00
|
|
|
@@ -196,4 +196,11 @@ public class SpigotWorldConfig
|
|
|
|
log( "*** WARNING *** Please use this option with caution, SpigotMC is not responsible for any issues this option may cause in the future!" );
|
|
|
|
}
|
2014-07-21 22:46:54 +02:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int arrowDespawnRate;
|
|
|
|
+ private void arrowDespawnRate()
|
|
|
|
+ {
|
|
|
|
+ arrowDespawnRate = getInt( "arrow-despawn-rate", 1200 );
|
|
|
|
+ log( "Arrow Despawn Rate: " + arrowDespawnRate );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
2016-02-29 22:33:06 +01:00
|
|
|
2.5.0
|
2014-07-21 22:46:54 +02:00
|
|
|
|