Update TraderSptCommand.cs

Partially implement PerformAction()
This commit is contained in:
Valens
2025-01-28 16:47:29 -05:00
parent 4e48f6f9ed
commit 91c1a25795
@@ -19,6 +19,19 @@ public class TraderSptCommand : ISptCommand
public string PerformAction(UserDialogInfo commandHandler, string sessionId, SendMessageRequest request)
{
// TODO: Finish implementation/fix errors.
// if (TraderSptCommand.commandRegex.test(request.text) is null)
// {
// this.mailSendService.sendUserMessageToPlayer(
// sessionId,
// commandHandler,
// "Invalid use of trader command. Use 'help' for more information.",
// );
// return request.DialogId;
// }
//
// return request.DialogId;
throw new NotImplementedException();
}
}