diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-11 06:44:49 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-11 06:44:49 +0100 |
commit | 5488a0ab94c68e0fd846e39b2892a40f781d7bd7 (patch) | |
tree | cf3e58453c88d9093be4286d7fe6abac3a445110 /src/main/java/at/hannibal2/skyhanni/config/Features.java | |
parent | c618fb4e335a3d03b04ba8840f7e3e6fb8832eaf (diff) | |
download | skyhanni-5488a0ab94c68e0fd846e39b2892a40f781d7bd7.tar.gz skyhanni-5488a0ab94c68e0fd846e39b2892a40f781d7bd7.tar.bz2 skyhanni-5488a0ab94c68e0fd846e39b2892a40f781d7bd7.zip |
Tps Display - Show the Tps of the current server.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/Features.java')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/Features.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/Features.java b/src/main/java/at/hannibal2/skyhanni/config/Features.java index 11aac3fc8..f0a830624 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/Features.java +++ b/src/main/java/at/hannibal2/skyhanni/config/Features.java @@ -131,6 +131,11 @@ public class Features extends Config { editOverlay(activeConfigCategory, 200, 16, minions.minionCraftHelperPos); return; } + + if (runnableId.equals("tpsDisplay")) { + editOverlay(activeConfigCategory, 200, 16, misc.tpsDisplayPosition); + return; + } } @Expose |