[CHORE] Update orion and fix potential forge bug

This commit is contained in:
2024-05-09 18:02:32 +02:00
parent 97d8eaa5e8
commit 21d9618283
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ public class ForgeClientEvents {
@SubscribeEvent
public static void clientTick(TickEvent.LevelTickEvent event) {
if (event.level == null)
if (Minecraft.getInstance().level == null)
return;
CraterClientTickEvent craterClientTickEvent = new CraterClientTickEvent(BridgedClientLevel.of(Minecraft.getInstance().level));

View File

@@ -3,7 +3,7 @@ plugins {
id 'com.github.johnrengelman.shadow' version '8.1.1' apply false
id "xyz.wagyourtail.unimined" version "1.2.4" apply false
id "com.hypherionmc.modutils.modpublisher" version "2.1.+"
id "com.hypherionmc.modutils.orion" version "1.0.10"
id "com.hypherionmc.modutils.orion" version "1.0.12"
id 'maven-publish'
}