public void Deny() { Target.RemoveInvitation(this); Party.RemoveGuest(Target); PartyHandler.SendPartyInvitationCancelledForGuestMessage(Target.Client, Target, this); PartyHandler.SendPartyRefuseInvitationNotificationMessage(Party.Clients, this); }
public void Deny() { this.Target.RemoveInvitation(this); this.Party.RemoveGuest(this.Target); PartyHandler.SendPartyInvitationCancelledForGuestMessage(this.Target.Client, this.Target, this); this.Party.ForEach(delegate(Character entry) { PartyHandler.SendPartyRefuseInvitationNotificationMessage(entry.Client, this); }); }