Class ServerTickEvents

java.lang.Object
net.fabricmc.fabric.api.event.lifecycle.v1.ServerTickEvents

@Deprecated public final class ServerTickEvents extends Object
Deprecated.
Use Quilt Lifecycle Events API's ServerTickEvents and ServerWorldTickEvents instead.
  • Field Details

    • START_SERVER_TICK

      public static final Event<ServerTickEvents.StartTick> START_SERVER_TICK
      Deprecated.
      Called at the start of the server tick.
    • END_SERVER_TICK

      public static final Event<ServerTickEvents.EndTick> END_SERVER_TICK
      Deprecated.
      Called at the end of the server tick.
    • START_WORLD_TICK

      public static final Event<ServerTickEvents.StartWorldTick> START_WORLD_TICK
      Deprecated.
      Called at the start of a ServerWorld's tick.
    • END_WORLD_TICK

      public static final Event<ServerTickEvents.EndWorldTick> END_WORLD_TICK
      Deprecated.
      Called at the end of a ServerWorld's tick.

      End of world tick may be used to start async computations for the next tick.