From b2699003019df3d50d36a138421644aff264edaa Mon Sep 17 00:00:00 2001 From: TiToMoskito Date: Sun, 16 Jan 2022 20:45:28 +0100 Subject: [PATCH] - Adjusted the Reliable Latency variable to 0.02f (was unsaved uploaded) --- CHANGELOG.txt | 4 +++- FishyLatency.cs | 2 +- VERSION.txt | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 45338d8..7288978 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -7,4 +7,6 @@ 1.1.0 - Fixed the simulation for dropping reliable packets by adding additional latency to it - Fixed release build checks - - Code restructured \ No newline at end of file + - Code restructured +1.1.1 + - Adjusted the Reliable Latency variable to 0.02f (was unsaved uploaded) \ No newline at end of file diff --git a/FishyLatency.cs b/FishyLatency.cs index e20d5b7..8c01052 100644 --- a/FishyLatency.cs +++ b/FishyLatency.cs @@ -23,7 +23,7 @@ public class FishyLatency : Transport [Tooltip("Additional amount of latency for reliable packets only when a packet get's lossed!")] [Range(0, 1)] - [SerializeField] float m_reliableLatency = 0.2f; + [SerializeField] float m_reliableLatency = 0.02f; [Tooltip("How many % should be a packet loss")] [Range(0, 1)] diff --git a/VERSION.txt b/VERSION.txt index 1cc5f65..8cfbc90 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -1.1.0 \ No newline at end of file +1.1.1 \ No newline at end of file