Fixed server crashing on startup.

This commit is contained in:
2022-01-19 16:10:17 +00:00
parent a6c7673d8f
commit ca6691de1a
2 changed files with 9 additions and 5 deletions

View File

@ -1,13 +1,13 @@
package dev.micle.totemofreviving;
import net.minecraft.client.multiplayer.ClientLevel;
import net.minecraft.server.MinecraftServer;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.level.Level;
public interface ISideProxy {
MinecraftServer getServer();
Player getClientPlayer();
ClientLevel getClientWorld();
Level getClientWorld();
}