Skip to content

Commit

Permalink
Fix: Revert Failures (hannibal002#3087)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidArthurCole authored Dec 19, 2024
1 parent 0c74cbb commit b8456f3
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -495,10 +495,11 @@ object SkyHanniDebugsAndTests {
}

@SubscribeEvent
@Suppress("ConstantConditionIf")
fun onRenderOverlay(event: GuiRenderEvent.GuiOverlayRenderEvent) {
if (!LorenzUtils.inSkyBlock) return

@Suppress("ConstantConditionIf") if (false) {
if (false) {
itemRenderDebug()
}

Expand Down Expand Up @@ -532,8 +533,9 @@ object SkyHanniDebugsAndTests {
}

@SubscribeEvent
@Suppress("ConstantConditionIf")
fun onGuiRenderChestGuiOverlayRender(event: GuiRenderEvent.ChestGuiOverlayRenderEvent) {
@Suppress("ConstantConditionIf") if (false) {
if (false) {
dragAbleTest()
}
}
Expand Down

0 comments on commit b8456f3

Please sign in to comment.