PaperSpigot-Parent/CraftBukkit-Patches/0057-Arrow-Despawn-Rate.patch

39 lines
1.5 KiB
Diff
Raw Normal View History

2014-04-15 01:37:11 +02:00
From ad6f0ad1cc97e082ab11f471774a88a4dd7c7370 Mon Sep 17 00:00:00 2001
2014-04-12 06:18:37 +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
2014-04-15 01:37:11 +02:00
index 3137bcf..13903e9 100644
2014-04-12 06:18:37 +02:00
--- 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 {
2014-04-12 06:18:37 +02:00
if (block == this.g && i == this.h) {
++this.at;
- if (this.at == 1200) {
2014-04-15 01:37:11 +02:00
+ if (this.at >= world.spigotConfig.arrowDespawnRate) { // First int after shooter
2014-04-12 06:18:37 +02:00
this.die();
}
} else {
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
index 82d59e7..2ec047c 100644
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
@@ -203,4 +203,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 );
+ }
}
--
2014-04-15 01:37:11 +02:00
1.8.3.2
2014-04-12 06:18:37 +02:00