From 782ae7c5889f2de755db78faa04196249cb68f8d Mon Sep 17 00:00:00 2001 From: Deserty0 Date: Thu, 11 Sep 2025 03:07:27 +1000 Subject: [PATCH] Update CP14FishBaseBehavior.cs --- .../_CP14/Fishing/Behaviors/CP14FishBaseBehavior.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Content.Shared/_CP14/Fishing/Behaviors/CP14FishBaseBehavior.cs b/Content.Shared/_CP14/Fishing/Behaviors/CP14FishBaseBehavior.cs index d3c9a09a6a..d1c8deaa14 100644 --- a/Content.Shared/_CP14/Fishing/Behaviors/CP14FishBaseBehavior.cs +++ b/Content.Shared/_CP14/Fishing/Behaviors/CP14FishBaseBehavior.cs @@ -5,11 +5,17 @@ namespace Content.Shared._CP14.Fishing.Behaviors; [ImplicitDataDefinitionForInheritors] public abstract partial class CP14FishBaseBehavior { - public abstract void CalculatePosition(IRobustRandom random); + public abstract float CalculatePosition(IRobustRandom random, float cordA); + /// + /// Speed which fish uses when going from A to B +- 0.2*Speed + /// [DataField] public float Speed; + /// + /// How long fish will be in point B until selecting next point B +- 0.2*Difficulty + /// [DataField] public float Difficulty; }