aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/firmament/util
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-10-28 03:54:06 +0200
committernea <nea@nea.moe>2023-10-28 03:54:06 +0200
commit9e7da2829cdc949d211ef5021131b4a48ddc3054 (patch)
treeb9215d3d1be7daa7a27a183340358cdc50e4c219 /src/main/kotlin/moe/nea/firmament/util
parent710d9ec3f720cee115168f3d9de01fa4ab3bdff8 (diff)
downloadFirmament-9e7da2829cdc949d211ef5021131b4a48ddc3054.tar.gz
Firmament-9e7da2829cdc949d211ef5021131b4a48ddc3054.tar.bz2
Firmament-9e7da2829cdc949d211ef5021131b4a48ddc3054.zip
Add left handed override for hypixel
Diffstat (limited to 'src/main/kotlin/moe/nea/firmament/util')
-rw-r--r--src/main/kotlin/moe/nea/firmament/util/ErrorBoundary.kt14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/firmament/util/ErrorBoundary.kt b/src/main/kotlin/moe/nea/firmament/util/ErrorBoundary.kt
new file mode 100644
index 0000000..4341361
--- /dev/null
+++ b/src/main/kotlin/moe/nea/firmament/util/ErrorBoundary.kt
@@ -0,0 +1,14 @@
+/*
+ * SPDX-FileCopyrightText: 2023 Linnea Gräf <nea@nea.moe>
+ *
+ * SPDX-License-Identifier: GPL-3.0-or-later
+ */
+
+package moe.nea.firmament.util
+
+
+fun <T> errorBoundary(block: () -> T): T? {
+ // TODO: implement a proper error boundary here to avoid crashing minecraft code
+ return block()
+}
+