aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/mixins/hooks
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-06-08 11:25:04 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-06-08 11:25:04 +0200
commit93daeb6ad7d018ce0527aa54198d69ee1ed13f65 (patch)
tree155e193633130c890deed90e3226d22959c63c63 /src/main/java/at/hannibal2/skyhanni/mixins/hooks
parentf9cafb766115d5342f7d7e1f8b9e3a56504f0273 (diff)
downloadskyhanni-93daeb6ad7d018ce0527aa54198d69ee1ed13f65.tar.gz
skyhanni-93daeb6ad7d018ce0527aa54198d69ee1ed13f65.tar.bz2
skyhanni-93daeb6ad7d018ce0527aa54198d69ee1ed13f65.zip
fixed english spelling
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/mixins/hooks')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/mixins/hooks/GuiContainerHook.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/mixins/hooks/GuiContainerHook.kt b/src/main/java/at/hannibal2/skyhanni/mixins/hooks/GuiContainerHook.kt
index 72f4a2e90..2572b969f 100644
--- a/src/main/java/at/hannibal2/skyhanni/mixins/hooks/GuiContainerHook.kt
+++ b/src/main/java/at/hannibal2/skyhanni/mixins/hooks/GuiContainerHook.kt
@@ -37,10 +37,10 @@ class GuiContainerHook(guiAny: Any) {
if (!SkyHanniDebugsAndTests.globalRender) return
if (GuiContainerEvent.BeforeDraw(gui, gui.inventorySlots, mouseX, mouseY, partialTicks).postAndCatch()) {
NEUApi.setInventoryButtonsToDisabled()
- GuiData.preDrawEventCanceled = true
+ GuiData.preDrawEventCancelled = true
ci.cancel()
} else {
- GuiData.preDrawEventCanceled = false
+ GuiData.preDrawEventCancelled = false
}
}