mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 02:10:30 +01:00
39 lines
1.4 KiB
Diff
39 lines
1.4 KiB
Diff
From 148f29b493844ff55a6a7f4f0e5da6755304aa14 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 6e5450a..ead7eef 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityArrow.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityArrow.java
|
|
@@ -155,7 +155,7 @@ public class EntityArrow extends Entity implements IProjectile {
|
|
|
|
if (block == this.g && i == this.h) {
|
|
++this.ap;
|
|
- if (this.ap >= 1200) {
|
|
+ if (this.ap >= 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 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 );
|
|
+ }
|
|
}
|
|
--
|
|
2.1.0
|
|
|