aboutsummaryrefslogtreecommitdiff
path: root/Northstar.Custom
diff options
context:
space:
mode:
authorBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-09-01 01:20:39 +0100
committerBobTheBob <32057864+BobTheBob9@users.noreply.github.com>2021-09-01 01:20:39 +0100
commitc0a0c7e502f2bc99185d79a485b965f63de7a203 (patch)
tree17301965510f1c70112f0b91cd598a33e1bda306 /Northstar.Custom
parent9a96d0bff56f1969c68bb52a2f33296095bdc67d (diff)
downloadNorthstarMods-c0a0c7e502f2bc99185d79a485b965f63de7a203.tar.gz
NorthstarMods-c0a0c7e502f2bc99185d79a485b965f63de7a203.zip
match setting localisation
Diffstat (limited to 'Northstar.Custom')
-rw-r--r--Northstar.Custom/mod/scripts/vscripts/_custom_air_accel.gnut2
-rw-r--r--Northstar.Custom/mod/scripts/vscripts/_promode.gnut2
2 files changed, 2 insertions, 2 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/_custom_air_accel.gnut b/Northstar.Custom/mod/scripts/vscripts/_custom_air_accel.gnut
index 5c228af49..8ebef0342 100644
--- a/Northstar.Custom/mod/scripts/vscripts/_custom_air_accel.gnut
+++ b/Northstar.Custom/mod/scripts/vscripts/_custom_air_accel.gnut
@@ -2,7 +2,7 @@ global function CustomAirAccelVars_Init
void function CustomAirAccelVars_Init()
{
- AddPrivateMatchModeSettingArbitrary( "Pilot", "custom_air_accel_pilot", "500" ) // 500 is the default airaccel
+ AddPrivateMatchModeSettingArbitrary( "#MODE_SETTING_CATEGORY_PILOT", "custom_air_accel_pilot", "500" ) // 500 is the default airaccel
#if SERVER
AddCallback_OnPlayerRespawned( ApplyCustomPlayerAirAccel )
diff --git a/Northstar.Custom/mod/scripts/vscripts/_promode.gnut b/Northstar.Custom/mod/scripts/vscripts/_promode.gnut
index 3e6d6d65f..f390fed60 100644
--- a/Northstar.Custom/mod/scripts/vscripts/_promode.gnut
+++ b/Northstar.Custom/mod/scripts/vscripts/_promode.gnut
@@ -4,7 +4,7 @@ global function PromodeEnabled
void function Promode_Init()
{
- AddPrivateMatchModeSettingEnum( "Promode", "promode_enable", [ "Disabled", "Enabled" ], "0" )
+ AddPrivateMatchModeSettingEnum( "#MODE_SETTING_CATEGORY_PROMODE", "promode_enable", [ "Disabled", "Enabled" ], "0" )
#if SERVER
AddCallback_OnPlayerRespawned( GivePromodeWeaponMod )