All Downloads are FREE. Search and download functionalities are using the official Maven repository.

emu.grasscutter.server.packet.send.PacketHostPlayerNotify Maven / Gradle / Ivy

package emu.grasscutter.server.packet.send;

import emu.grasscutter.game.world.World;
import emu.grasscutter.net.packet.BasePacket;
import emu.grasscutter.net.packet.PacketOpcodes;
import emu.grasscutter.net.proto.HostPlayerNotifyOuterClass.HostPlayerNotify;

public class PacketHostPlayerNotify extends BasePacket {
	
	public PacketHostPlayerNotify(World world) {
		super(PacketOpcodes.HostPlayerNotify);
		
		HostPlayerNotify proto = HostPlayerNotify.newBuilder()
				.setHostUid(world.getHost().getUid())
				.setHostPeerId(world.getHost().getPeerId())
				.build();
		
		this.setData(proto);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy