From b1a2491e9a84b8a4a6261b43f97d3a907d979f06 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Fri, 15 Sep 2023 10:01:03 +0200 Subject: Added gui scale to the config editor command --- .../at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt index fbdb21257..c1aa5a313 100644 --- a/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt +++ b/src/main/java/at/hannibal2/skyhanni/test/SkyHanniConfigSearchResetCommand.kt @@ -263,7 +263,8 @@ object SkyHanniConfigSearchResetCommand { if (this is Position) { val x = javaClass.getDeclaredField("x").makeAccessible().get(this) val y = javaClass.getDeclaredField("y").makeAccessible().get(this) - return "($x, $y)" + val scale = javaClass.getDeclaredField("scale").makeAccessible().get(this) + return "($x, $y, $scale)" } if (this is String) { -- cgit