diff options
author | Jack <66967891+ASpoonPlaysGames@users.noreply.github.com> | 2023-10-09 00:45:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-09 01:45:46 +0200 |
commit | 612e6a116990afe15212af917aa8443030d5c3d4 (patch) | |
tree | 18b6354166858751e2055224ce4faa026ab34911 /Northstar.Custom | |
parent | 89c0d98ed62ec32861045852dbbfd295b0859761 (diff) | |
download | NorthstarMods-612e6a116990afe15212af917aa8443030d5c3d4.tar.gz NorthstarMods-612e6a116990afe15212af917aa8443030d5c3d4.zip |
Fix titan-only boosts for modes like LTS (#678)
Revert back to the original check by Respawn
Diffstat (limited to 'Northstar.Custom')
-rw-r--r-- | Northstar.Custom/mod/scripts/vscripts/burnmeter/sh_burnmeter.gnut | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Northstar.Custom/mod/scripts/vscripts/burnmeter/sh_burnmeter.gnut b/Northstar.Custom/mod/scripts/vscripts/burnmeter/sh_burnmeter.gnut index ac9ffab3..37d4356f 100644 --- a/Northstar.Custom/mod/scripts/vscripts/burnmeter/sh_burnmeter.gnut +++ b/Northstar.Custom/mod/scripts/vscripts/burnmeter/sh_burnmeter.gnut @@ -188,7 +188,7 @@ BurnReward function BurnReward_GetRandom() string ref = burn.allowedCards.getrandom().ref #if SERVER || CLIENT - if ( !EarnMeterMP_IsTitanEarnGametype() ) + if ( Riff_TitanAvailability() == eTitanAvailability.Never ) ref = BurnMeter_GetNoTitansReplacement( ref ) if ( GetCurrentPlaylistVarInt( "featured_mode_all_ticks", 0 ) >= 1 ) @@ -211,7 +211,7 @@ string function GetSelectedBurnCardRef( entity player ) #endif #if SERVER || CLIENT - if ( !EarnMeterMP_IsTitanEarnGametype() ) + if ( Riff_TitanAvailability() == eTitanAvailability.Never ) ref = BurnMeter_GetNoTitansReplacement( ref ) if ( GetCurrentPlaylistVarInt( "featured_mode_all_ticks", 0 ) >= 1 ) |