aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/moe/nea/notenoughupdates/mixins/MixinDownloadingTerrainScreen.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/moe/nea/notenoughupdates/mixins/MixinDownloadingTerrainScreen.java')
-rw-r--r--src/main/java/moe/nea/notenoughupdates/mixins/MixinDownloadingTerrainScreen.java16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/main/java/moe/nea/notenoughupdates/mixins/MixinDownloadingTerrainScreen.java b/src/main/java/moe/nea/notenoughupdates/mixins/MixinDownloadingTerrainScreen.java
deleted file mode 100644
index 3ed8a73..0000000
--- a/src/main/java/moe/nea/notenoughupdates/mixins/MixinDownloadingTerrainScreen.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package moe.nea.notenoughupdates.mixins;
-
-import moe.nea.notenoughupdates.events.WorldReadyEvent;
-import net.minecraft.client.gui.screen.DownloadingTerrainScreen;
-import org.spongepowered.asm.mixin.Mixin;
-import org.spongepowered.asm.mixin.injection.At;
-import org.spongepowered.asm.mixin.injection.Inject;
-import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
-
-@Mixin(DownloadingTerrainScreen.class)
-public class MixinDownloadingTerrainScreen {
- @Inject(method = "close", at = @At("HEAD"))
- public void onClose(CallbackInfo ci) {
- WorldReadyEvent.Companion.publish(new WorldReadyEvent());
- }
-}