package emu.grasscutter.server.packet.send; import emu.grasscutter.net.packet.BasePacket; import emu.grasscutter.net.packet.PacketOpcodes; import emu.grasscutter.net.proto.UnlockedFurnitureSuiteDataNotifyOuterClass; import java.util.Set; public class PacketUnlockedFurnitureSuiteDataNotify extends BasePacket { public PacketUnlockedFurnitureSuiteDataNotify(Set unlockList) { super(PacketOpcodes.UnlockedFurnitureSuiteDataNotify); var proto = UnlockedFurnitureSuiteDataNotifyOuterClass.UnlockedFurnitureSuiteDataNotify.newBuilder(); proto.addAllFurnitureSuiteIdList(unlockList); proto.setIsAll(true); this.setData(proto); } }