diff --git a/Assets/Scripts/Chat/Chat2Commands.cs b/Assets/Scripts/Chat/Chat2Commands.cs index 0a1fc0b5..22e0f733 100644 --- a/Assets/Scripts/Chat/Chat2Commands.cs +++ b/Assets/Scripts/Chat/Chat2Commands.cs @@ -40,6 +40,9 @@ namespace SanAndreasUnity.Chat response = exception.Message; } + // send command back to player + ChatManager.SendChatMessageToPlayer(player, chatMessage); + // send response back to player if (!string.IsNullOrWhiteSpace(response)) ChatManager.SendChatMessageToPlayer(player, response);