diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-11 13:18:06 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-11-11 13:18:06 +0100 |
| commit | b5594a9a8744dc2d547393dc7fba27e6452c1af3 (patch) | |
| tree | 6c066d5ca80717bd1fa9e1a976c0f5d9ff07d04d | |
| parent | e09936d4a6aa2ad405848c57deee60bcddb4ca7c (diff) | |
| download | SkyHanni-b5594a9a8744dc2d547393dc7fba27e6452c1af3.tar.gz SkyHanni-b5594a9a8744dc2d547393dc7fba27e6452c1af3.tar.bz2 SkyHanni-b5594a9a8744dc2d547393dc7fba27e6452c1af3.zip | |
/shversion now copies the SkyHanni version into clipboard as well.
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt index 1f8e0a626..a5f0392b9 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniDebugsAndTests.kt @@ -262,7 +262,9 @@ class SkyHanniDebugsAndTests { } fun debugVersion() { - LorenzUtils.chat("§eYou are using SkyHanni ${SkyHanniMod.version}") + val name = "SkyHanni ${SkyHanniMod.version}" + LorenzUtils.chat("§eYou are using $name") + OSUtils.copyToClipboard(name) } fun debugData(args: Array<String>) { |
