public class StoreTrainerDataPacket extends AbstractPixelmonPacket
| Constructor and Description |
|---|
StoreTrainerDataPacket() |
StoreTrainerDataPacket(int currentTrainerID,
net.minecraft.item.ItemStack... drops)
Initializes a packet to store NPC Trainer drops.
|
StoreTrainerDataPacket(int trainerId,
SetTrainerData data)
Initializes a packet to store NPC Trainer thiss.
|
| Modifier and Type | Method and Description |
|---|---|
void |
decode(net.minecraft.network.PacketBuffer buf)
Decodes the information from the buffer to the packet instance
|
void |
encode(net.minecraft.network.PacketBuffer buf)
Encodes the buffer with the packet information
|
protected void |
handlePacket(net.minecraftforge.fml.network.NetworkEvent.Context context) |
handle, replypublic StoreTrainerDataPacket()
public StoreTrainerDataPacket(int trainerId,
SetTrainerData data)
trainerId - The ID of the NPC Trainer.data - The NPC Trainer data to save.public StoreTrainerDataPacket(int currentTrainerID,
net.minecraft.item.ItemStack... drops)
currentTrainerID - The ID of the NPC Trainer.drops - The NPC Trainer data to save.public void decode(net.minecraft.network.PacketBuffer buf)
PixelmonPacketdecode in interface PixelmonPacketdecode in class AbstractPixelmonPacketbuf - The buffer being decodedpublic void encode(net.minecraft.network.PacketBuffer buf)
PixelmonPacketencode in interface PixelmonPacketencode in class AbstractPixelmonPacketbuf - The buffer being encodedprotected void handlePacket(net.minecraftforge.fml.network.NetworkEvent.Context context)
handlePacket in class AbstractPixelmonPacket