Example #1
0
 public LfgTeleportDenied(LfgTeleportResult reason) : base(ServerOpcodes.LfgTeleportDenied, ConnectionType.Instance)
 {
     Reason = reason;
 }
Example #2
0
 public void SendLfgTeleportError(LfgTeleportResult err)
 {
     Log.outDebug(LogFilter.Lfg, "SMSG_LFG_TELEPORT_DENIED {0} reason: {1}", GetPlayerInfo(), err);
     SendPacket(new LfgTeleportDenied(err));
 }