aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/test
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-06-22 15:13:05 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-06-22 15:13:05 +0200
commitb3e289dbec40cdd0632bac41f510d94af545983c (patch)
tree6c20750154b48e8ddac47d93b537b4dcbf5a8326 /src/main/java/at/hannibal2/skyhanni/test
parent80809a9d62e42155bc520848a1cdd55721d980b0 (diff)
downloadskyhanni-b3e289dbec40cdd0632bac41f510d94af545983c.tar.gz
skyhanni-b3e289dbec40cdd0632bac41f510d94af545983c.tar.bz2
skyhanni-b3e289dbec40cdd0632bac41f510d94af545983c.zip
Add Rift Highlight Guide
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/test')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt
index 575a2e4fe..ccaeee6ef 100644
--- a/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt
+++ b/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt
@@ -40,7 +40,7 @@ object CopyErrorCommand {
Minecraft.getMinecraft().thePlayer ?: throw Error(message, error)
val pair = error.stackTrace[0].let { it.fileName to it.lineNumber }
-// if (cache.getIfPresent(pair) != null) return
+ if (cache.getIfPresent(pair) != null) return
cache.put(pair, Unit)
val fullStackTrace = error.getExactStackTrace(true).joinToString("\n")