diff options
author | Tom Barham <me@cpdt.dev> | 2022-02-23 00:19:06 +1000 |
---|---|---|
committer | Barichello <artur@barichello.me> | 2022-02-23 20:06:59 -0300 |
commit | 39d3a0a6fa5b39fdbfbf8a70ba4edee650a93e38 (patch) | |
tree | b8fde8cafe5e29c0096a95bda2ff44be3b9e9f88 | |
parent | c7552cd1aeaa094001a020ab5f73766250535988 (diff) | |
download | NorthstarMods-39d3a0a6fa5b39fdbfbf8a70ba4edee650a93e38.tar.gz NorthstarMods-39d3a0a6fa5b39fdbfbf8a70ba4edee650a93e38.zip |
Include clan tag in chat messages
-rw-r--r-- | Northstar.Client/mod/scripts/vscripts/_custom_codecallbacks_client.gnut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Northstar.Client/mod/scripts/vscripts/_custom_codecallbacks_client.gnut b/Northstar.Client/mod/scripts/vscripts/_custom_codecallbacks_client.gnut index 9241fcdf..494262e8 100644 --- a/Northstar.Client/mod/scripts/vscripts/_custom_codecallbacks_client.gnut +++ b/Northstar.Client/mod/scripts/vscripts/_custom_codecallbacks_client.gnut @@ -84,7 +84,7 @@ void function CHudChat_OnReceivedSayTextMessageCallback(int fromPlayerIndex, str return } - fromPlayerName = fromPlayer.GetPlayerName() + fromPlayerName = fromPlayer.GetPlayerNameWithClanTag() } if (messageType == 0 || messageType == 1) |