mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-05 10:20:53 +01:00
41 lines
2.0 KiB
Diff
41 lines
2.0 KiB
Diff
From a219468eb44541f05fc0209db98f8f8b65bdc108 Mon Sep 17 00:00:00 2001
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
Date: Fri, 28 Nov 2014 01:29:35 -0600
|
|
Subject: [PATCH] Configurable fishing time ranges
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityFishingHook.java b/src/main/java/net/minecraft/server/EntityFishingHook.java
|
|
index b1a6daf..e94c4c7 100644
|
|
--- a/src/main/java/net/minecraft/server/EntityFishingHook.java
|
|
+++ b/src/main/java/net/minecraft/server/EntityFishingHook.java
|
|
@@ -324,7 +324,8 @@ public class EntityFishingHook extends Entity {
|
|
this.av = MathHelper.nextInt(this.random, 20, 80);
|
|
}
|
|
} else {
|
|
- this.au = MathHelper.nextInt(this.random, 100, 900);
|
|
+ // PaperSpigot - Configurable fishing tick range
|
|
+ this.au = MathHelper.nextInt(this.random, this.world.paperSpigotConfig.fishingMinTicks, this.world.paperSpigotConfig.fishingMaxTicks);
|
|
this.au -= EnchantmentManager.h(this.owner) * 20 * 5;
|
|
}
|
|
}
|
|
diff --git a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
index 0878ea7..b67b856 100644
|
|
--- a/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
+++ b/src/main/java/org/github/paperspigot/PaperSpigotWorldConfig.java
|
|
@@ -106,4 +106,12 @@ public class PaperSpigotWorldConfig
|
|
reedMaxHeight = getInt( "max-growth-height.reeds", 3 );
|
|
log( "Max height for cactus growth " + cactusMaxHeight + ". Max height for reed growth " + reedMaxHeight);
|
|
}
|
|
+
|
|
+ public int fishingMinTicks;
|
|
+ public int fishingMaxTicks;
|
|
+ private void fishingTickRange()
|
|
+ {
|
|
+ fishingMinTicks = getInt( "fishing-time-range.MinimumTicks", 100 );
|
|
+ fishingMaxTicks = getInt( "fishing-time-range.MaximumTicks", 900 );
|
|
+ }
|
|
}
|
|
--
|
|
1.9.5.msysgit.0
|
|
|