cab333b217
Don't send requests of every player was found in the global api cache SpigotMC/Spigot@841270ff1e Correctly set the response code for the cached lookups and return the ... SpigotMC/Spigot@f170b7899c Don't try and re-set the global api cache on reload SpigotMC/Spigot@b410a00a66 Use a compile time sneaky throw hack. SpigotMC/Spigot@508462b96b Fix a missed rename in WorldGenGroundBush SpigotMC/Spigot@0614d8fae9
39 lines
1.4 KiB
Diff
39 lines
1.4 KiB
Diff
From a6c2721133c875399815dc33b31a119e0d5382f4 Mon Sep 17 00:00:00 2001
|
|
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
|
|
index ac5d5d2..de8dda7 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityArrow.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityArrow.java
|
|
@@ -156,7 +156,7 @@ public class EntityArrow extends Entity implements IProjectile {
|
|
|
|
if (block == this.g && i == this.h) {
|
|
++this.at;
|
|
- if (this.at == 1200) {
|
|
+ if (this.at >= world.spigotConfig.arrowDespawnRate) { // First int after shooter
|
|
this.die();
|
|
}
|
|
} else {
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
index 6d31363..1814b4f 100644
|
|
--- 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 );
|
|
+ }
|
|
}
|
|
--
|
|
1.9.1
|
|
|