2014-01-14 09:16:43 +01:00
|
|
|
From 271b8162947d0cb71d237b42f39ca03135732626 Mon Sep 17 00:00:00 2001
|
2013-09-22 11:11:09 +02:00
|
|
|
From: md_5 <md_5@live.com.au>
|
|
|
|
Date: Sun, 22 Sep 2013 19:10:53 +1000
|
|
|
|
Subject: [PATCH] Item Despawn Rate
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityItem.java b/src/main/java/net/minecraft/server/EntityItem.java
|
2013-12-01 04:40:53 +01:00
|
|
|
index 08b9ac8..8ea7abc 100644
|
2013-09-22 11:11:09 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityItem.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityItem.java
|
2013-12-01 04:40:53 +01:00
|
|
|
@@ -104,7 +104,7 @@ public class EntityItem extends Entity {
|
|
|
|
}
|
2013-09-22 11:11:09 +02:00
|
|
|
|
2013-12-01 04:40:53 +01:00
|
|
|
// ++this.age; // CraftBukkit - Moved up
|
|
|
|
- if (!this.world.isStatic && this.age >= 6000) {
|
|
|
|
+ if (!this.world.isStatic && this.age >= world.spigotConfig.itemDespawnRate) { // Spigot
|
|
|
|
// CraftBukkit start
|
|
|
|
if (org.bukkit.craftbukkit.event.CraftEventFactory.callItemDespawnEvent(this).isCancelled()) {
|
|
|
|
this.age = 0;
|
2013-09-22 11:11:09 +02:00
|
|
|
diff --git a/src/main/java/org/spigotmc/SpigotWorldConfig.java b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
2014-01-14 09:16:43 +01:00
|
|
|
index 3825bdf..72aabff 100644
|
2013-09-22 11:11:09 +02:00
|
|
|
--- a/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
|
|
|
+++ b/src/main/java/org/spigotmc/SpigotWorldConfig.java
|
2014-01-14 09:16:43 +01:00
|
|
|
@@ -196,4 +196,11 @@ public class SpigotWorldConfig
|
2013-09-22 11:11:09 +02:00
|
|
|
log( "*** WARNING *** Please use this option with caution, SpigotMC is not responsible for any issues this option may cause in the future!" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int itemDespawnRate;
|
|
|
|
+ private void itemDespawnRate()
|
|
|
|
+ {
|
|
|
|
+ itemDespawnRate = getInt( "item-despawn-rate", 6000 );
|
|
|
|
+ log( "Item Despawn Rate: " + itemDespawnRate );
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
--
|
2013-12-01 04:40:53 +01:00
|
|
|
1.8.3.2
|
2013-09-22 11:11:09 +02:00
|
|
|
|