mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
36 lines
1.6 KiB
Diff
36 lines
1.6 KiB
Diff
|
From 0000000000000000000000000000000000000000 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 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||
|
--- a/src/main/java/net/minecraft/server/EntityArrow.java
|
||
|
+++ b/src/main/java/net/minecraft/server/EntityArrow.java
|
||
|
@@ -0,0 +0,0 @@ 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 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
||
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
||
|
@@ -0,0 +0,0 @@ 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 );
|
||
|
+ }
|
||
|
}
|
||
|
--
|