From ab2c00cb0c6bd45f3928e08a510728ea79420bb8 Mon Sep 17 00:00:00 2001 From: TudbuT Date: Sat, 5 Oct 2024 03:42:59 +0200 Subject: [PATCH] fix PacketCounter abbreviate option --- .../baseband/client/feature/modules/client/PacketCounter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client/src/main/java/de/com/baseband/client/feature/modules/client/PacketCounter.java b/Client/src/main/java/de/com/baseband/client/feature/modules/client/PacketCounter.java index 57e31ca..c80acbc 100644 --- a/Client/src/main/java/de/com/baseband/client/feature/modules/client/PacketCounter.java +++ b/Client/src/main/java/de/com/baseband/client/feature/modules/client/PacketCounter.java @@ -35,7 +35,7 @@ public class PacketCounter extends Feature { } private String abbreviate(long n) { - if(n < 10_000L) { + if(n < 10_000L || !abbrev) { return String.valueOf(n); } if(n < 10_000_000L) {