Fix reply command

This commit is contained in:
Vortrex
2023-02-18 14:37:13 -06:00
parent ad8c459839
commit 9e4ae75fbe

View File

@@ -267,8 +267,7 @@ function replyToLastPrivateMessageCommand(command, params, client) {
return false; return false;
} }
getPlayerData(targetClient).privateMessageReplyTo = client; messagePlayerPrivateMessage(getPlayerData(client).privateMessageReplyTo, client, params);
messagePlayerPrivateMessage(targetClient, client, messageText);
markPlayerActionTipSeen(client, "ReplyToDirectMessage"); markPlayerActionTipSeen(client, "ReplyToDirectMessage");
} }