diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2022-12-09 00:57:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-09 01:57:28 +0100 |
commit | 4a1ff7d1f01b86e0eeb58850641e31a3d17282c4 (patch) | |
tree | 84a4156c75a92cf3914d056e044d00a1ad860d6a | |
parent | b71a63e32beabec1d91029f88527c3462c80d758 (diff) | |
download | NorthstarMods-1.11.1.tar.gz NorthstarMods-1.11.1.zip |
Localize stringcommands to allow servers to use localised messages (#535)v1.11.1-rc1v1.11.1v1.11.0-rc3v1.11.0-rc2v1.11.0
* localize stringcommands to allow servers to use localised messages
* formatting ig
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/sh_message_utils.gnut | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/sh_message_utils.gnut b/Northstar.Custom/mod/scripts/vscripts/sh_message_utils.gnut index 6bbf77bd..4cfdc6fb 100644 --- a/Northstar.Custom/mod/scripts/vscripts/sh_message_utils.gnut +++ b/Northstar.Custom/mod/scripts/vscripts/sh_message_utils.gnut @@ -225,7 +225,7 @@ string function CombineArgsIntoString( array<string> args ) // Ignore the first argument for( int i = 1; i < args.len(); i++ ) - result += args[i] + " " + result += Localize( args[i] ) + " " return result } |