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;
}
getPlayerData(targetClient).privateMessageReplyTo = client;
messagePlayerPrivateMessage(targetClient, client, messageText);
messagePlayerPrivateMessage(getPlayerData(client).privateMessageReplyTo, client, params);
markPlayerActionTipSeen(client, "ReplyToDirectMessage");
}