mirror of
https://hub.spigotmc.org/stash/scm/spigot/spigot.git
synced 2025-09-18 21:33:01 +00:00
38 lines
1.5 KiB
Diff
38 lines
1.5 KiB
Diff
From 81806ff8c532f6686f04af6d77f6572d6e27a434 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 ba41470d8..3ff8b96f1 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityArrow.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityArrow.java
|
|
@@ -157,7 +157,7 @@ public abstract class EntityArrow extends Entity implements IProjectile {
|
|
this.ay = 0;
|
|
} else {
|
|
++this.ax;
|
|
- if (this.ax >= 1200) {
|
|
+ if (this.ax >= world.spigotConfig.arrowDespawnRate) { // Spigot - First int after shooter
|
|
this.die();
|
|
}
|
|
}
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
index 1bdcd8e15..bdb7bed18 100644
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
@@ -201,4 +201,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!" );
|
|
}
|
|
}
|
|
+
|
|
+ public int arrowDespawnRate;
|
|
+ private void arrowDespawnRate()
|
|
+ {
|
|
+ arrowDespawnRate = getInt( "arrow-despawn-rate", 1200 );
|
|
+ log( "Arrow Despawn Rate: " + arrowDespawnRate );
|
|
+ }
|
|
}
|
|
--
|
|
2.11.0
|
|
|