mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-10 14:34:32 +02:00
LS kicking and leaving work.
This commit is contained in:
parent
61e4effd74
commit
771b5b6d81
7 changed files with 139 additions and 16 deletions
|
@ -698,7 +698,13 @@ namespace FFXIVClassic_Map_Server
|
|||
|
||||
public void RequestWorldLinkshellLeave(Player player, string lsname)
|
||||
{
|
||||
SubPacket packet = LinkshellLeavePacket.BuildPacket(player.playerSession, lsname, false);
|
||||
SubPacket packet = LinkshellLeavePacket.BuildPacket(player.playerSession, lsname, null, false);
|
||||
Server.GetWorldConnection().QueuePacket(packet, true, false);
|
||||
}
|
||||
|
||||
public void RequestWorldLinkshellKick(Player player, string lsname, string kickedName)
|
||||
{
|
||||
SubPacket packet = LinkshellLeavePacket.BuildPacket(player.playerSession, lsname, kickedName, true);
|
||||
Server.GetWorldConnection().QueuePacket(packet, true, false);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue