Run migration mappings

Everything is still broken, but at least we reduced the amount of errors by hundreds, if not thousands.
This commit is contained in:
Nicholas Ignoffo 2019-09-22 12:55:43 -07:00
parent 1caae69992
commit 4035d91151
484 changed files with 4924 additions and 4962 deletions

View file

@ -2,7 +2,7 @@ package WayofTime.bloodmagic.network;
import WayofTime.bloodmagic.BloodMagic;
import WayofTime.bloodmagic.util.ChatUtil;
import net.minecraft.entity.player.EntityPlayerMP;
import net.minecraft.entity.player.ServerPlayerEntity;
import net.minecraft.tileentity.TileEntity;
import net.minecraftforge.fml.common.network.NetworkRegistry;
import net.minecraftforge.fml.common.network.simpleimpl.IMessage;
@ -31,7 +31,7 @@ public class BloodMagicPacketHandler {
sendToAllAround(message, te, 64);
}
public static void sendTo(IMessage message, EntityPlayerMP player) {
public static void sendTo(IMessage message, ServerPlayerEntity player) {
INSTANCE.sendTo(message, player);
}
}