mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-09-18 21:33:01 +00:00
38 lines
1.4 KiB
Diff
38 lines
1.4 KiB
Diff
From 659c3f042d04842fffcfd4f9fcd4a94a71d8d4c1 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 b91b5b84b..b9943000c 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityArrow.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityArrow.java
|
|
@@ -262,7 +262,7 @@ public abstract class EntityArrow extends Entity implements IProjectile {
|
|
|
|
protected void f() {
|
|
++this.despawnCounter;
|
|
- if (this.despawnCounter >= 1200) {
|
|
+ if (this.despawnCounter >= world.spigotConfig.arrowDespawnRate) { // Spigot
|
|
this.die();
|
|
}
|
|
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
index b909d7bbd..c7984825d 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
@@ -191,4 +191,11 @@ public class SpigotWorldConfig
|
|
randomLightUpdates = getBoolean( "random-light-updates", false );
|
|
log( "Random Lighting Updates: " + randomLightUpdates );
|
|
}
|
|
+
|
|
+ public int arrowDespawnRate;
|
|
+ private void arrowDespawnRate()
|
|
+ {
|
|
+ arrowDespawnRate = getInt( "arrow-despawn-rate", 1200 );
|
|
+ log( "Arrow Despawn Rate: " + arrowDespawnRate );
|
|
+ }
|
|
}
|
|
--
|
|
2.19.1
|
|
|