replace client ticks with a timer

Prevents DH loading issues when MC ticks are paused
This commit is contained in:
James Seibel
2025-12-13 11:19:39 -06:00
parent f2d373b779
commit a44a5d7465
4 changed files with 1 additions and 47 deletions
@@ -107,21 +107,6 @@ public class ForgeClientProxy implements AbstractModInitializer.IEventProxy
//=============//
// tick events //
//=============//
@SubscribeEvent
public void clientTickEvent(TickEvent.ClientTickEvent event)
{
if (event.phase == TickEvent.Phase.START)
{
ClientApi.INSTANCE.clientTickEvent();
}
}
//==============//
// world events //
//==============//