mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
31 lines
928 B
C#
31 lines
928 B
C#
using FFXIVClassic.Common;
|
|
using FFXIVClassic_World_Server.Packets.Send.Subpackets.Groups;
|
|
|
|
namespace FFXIVClassic_World_Server.DataObjects.Group
|
|
{
|
|
class RetainerMeetingRelationGroup : Relation
|
|
{
|
|
public RetainerMeetingRelationGroup(ulong groupIndex, uint host, uint other, uint command, ulong topicGroup)
|
|
: base(groupIndex, host, other, command, topicGroup)
|
|
{
|
|
|
|
}
|
|
|
|
public override uint GetTypeId()
|
|
{
|
|
return Group.RetainerMeetingRelationGroup;
|
|
}
|
|
|
|
public override void SendInitWorkValues(Session session)
|
|
{
|
|
SynchGroupWorkValuesPacket groupWork = new SynchGroupWorkValuesPacket(groupIndex);
|
|
groupWork.setTarget("/_init");
|
|
|
|
SubPacket test = groupWork.buildPacket(session.sessionId);
|
|
test.DebugPrintSubPacket();
|
|
session.clientConnection.QueuePacket(test);
|
|
}
|
|
|
|
}
|
|
}
|