38 lines
1.0 KiB
Java
38 lines
1.0 KiB
Java
package tschipp.carryon.network.client;
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.client.entity.EntityPlayerSP;
|
|
import net.minecraft.util.IThreadListener;
|
|
import net.minecraftforge.fml.common.network.simpleimpl.IMessage;
|
|
import net.minecraftforge.fml.common.network.simpleimpl.IMessageHandler;
|
|
import net.minecraftforge.fml.common.network.simpleimpl.MessageContext;
|
|
import tschipp.carryon.client.keybinds.CarryOnKeybinds;
|
|
|
|
public class CarrySlotPacketHandler implements IMessageHandler<CarrySlotPacket, IMessage>
|
|
{
|
|
|
|
@Override
|
|
public IMessage onMessage(final CarrySlotPacket message, final MessageContext ctx)
|
|
{
|
|
IThreadListener mainThread = Minecraft.getMinecraft();
|
|
|
|
mainThread.addScheduledTask(new Runnable()
|
|
{
|
|
EntityPlayerSP player = Minecraft.getMinecraft().thePlayer;
|
|
|
|
@Override
|
|
public void run()
|
|
{
|
|
if (message.slot >= 9)
|
|
player.getEntityData().removeTag("carrySlot");
|
|
else
|
|
player.getEntityData().setInteger("carrySlot", message.slot);
|
|
}
|
|
|
|
});
|
|
|
|
return null;
|
|
}
|
|
|
|
}
|