2019-06-14 04:27:40 +02:00
|
|
|
From 3fabcc0883b88ec4c3f2c19baf52314928c284be Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01:00
|
|
|
From: Zach Brown <zach.brown@destroystokyo.com>
|
|
|
|
Date: Tue, 1 Mar 2016 13:14:11 -0600
|
|
|
|
Subject: [PATCH] Configurable fishing time ranges
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-04-23 06:47:07 +02:00
|
|
|
index 55d8e74f82..a55163a458 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2018-07-24 02:24:44 +02:00
|
|
|
@@ -79,4 +79,12 @@ public class PaperWorldConfig {
|
2016-03-01 00:09:49 +01:00
|
|
|
babyZombieMovementSpeed = getDouble("baby-zombie-movement-speed", 0.5D); // Player moves at 0.1F, for reference
|
|
|
|
log("Baby zombies will move at the speed of " + babyZombieMovementSpeed);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public int fishingMinTicks;
|
|
|
|
+ public int fishingMaxTicks;
|
|
|
|
+ private void fishingTickRange() {
|
|
|
|
+ fishingMinTicks = getInt("fishing-time-range.MinimumTicks", 100);
|
2016-11-17 03:23:38 +01:00
|
|
|
+ fishingMaxTicks = getInt("fishing-time-range.MaximumTicks", 600);
|
2016-03-01 00:09:49 +01:00
|
|
|
+ log("Fishing time ranges are between " + fishingMinTicks +" and " + fishingMaxTicks + " ticks");
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityFishingHook.java b/src/main/java/net/minecraft/server/EntityFishingHook.java
|
2019-06-06 17:36:57 +02:00
|
|
|
index cdcad4c292..19a6233c3f 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityFishingHook.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityFishingHook.java
|
2019-04-24 03:00:24 +02:00
|
|
|
@@ -329,8 +329,9 @@ public class EntityFishingHook extends Entity {
|
|
|
|
this.at = MathHelper.nextInt(this.random, 20, 80);
|
2016-11-17 03:23:38 +01:00
|
|
|
}
|
|
|
|
} else {
|
2019-04-24 03:00:24 +02:00
|
|
|
- this.as = MathHelper.nextInt(this.random, 100, 600);
|
|
|
|
+ this.as = MathHelper.nextInt(this.random, world.paperConfig.fishingMinTicks, world.paperConfig.fishingMaxTicks); // Paper
|
|
|
|
this.as -= this.ax * 20 * 5;
|
|
|
|
+ this.as = Math.max(0, this.as); // Paper - Don't allow negative values
|
2016-11-17 03:23:38 +01:00
|
|
|
}
|
|
|
|
}
|
2019-04-05 06:09:29 +02:00
|
|
|
|
2016-03-01 00:09:49 +01:00
|
|
|
--
|
2019-04-05 06:09:29 +02:00
|
|
|
2.21.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|