diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-14 01:14:20 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-14 01:14:20 +0100 |
commit | 825900c07e1a498b6dc852f4d44303394a908bf2 (patch) | |
tree | 8b7bcf30a758e2c6c52af6470868732501674a18 | |
parent | f1454ea7831976daa615290ea32a369f3ace6216 (diff) | |
download | skyhanni-825900c07e1a498b6dc852f4d44303394a908bf2.tar.gz skyhanni-825900c07e1a498b6dc852f4d44303394a908bf2.tar.bz2 skyhanni-825900c07e1a498b6dc852f4d44303394a908bf2.zip |
code cleanup
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/misc/PatcherSendCoordinates.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/PatcherSendCoordinates.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/PatcherSendCoordinates.kt index 0c985376c..d9b876546 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/misc/PatcherSendCoordinates.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/misc/PatcherSendCoordinates.kt @@ -39,7 +39,7 @@ class PatcherSendCoordinates { val z = if (end.contains(" ")) { val split = end.split(" ") val extra = split.drop(1).joinToString(" ") - description += " " + extra + description += " $extra" split.first().toFloat() } else end.toFloat() |