Skip to content

Commit

Permalink
Party chat watch verb handler.
Browse files Browse the repository at this point in the history
  • Loading branch information
jhett12321 committed Jun 3, 2023
1 parent a5b2721 commit ced87ba
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions NWN.Toolbox/src/Features/ChatWatch/ChatWatchCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public void ProcessCommand(NwPlayer caller, IReadOnlyList<string> args)
case "player":
caller.EnterPlayerTargetMode(eventData => ChatWatchService.ToggleSubscribe(eventData.Caller, eventData.Target));
break;
case "party":
caller.EnterPlayerTargetMode(eventData => ChatWatchService.TogglerPartySubscribe(eventData.Caller, eventData.Target));
break;
case "area":
NwArea area = caller.ControlledCreature?.Area;
if (area != null)
Expand Down

0 comments on commit ced87ba

Please sign in to comment.