Skip to content

Commit

Permalink
Merge branch 'main' into tbshotgun_fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zanieon authored Jul 6, 2024
2 parents 4168db8 + f3fa134 commit 7266650
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,11 @@ void function EarnMeter_Update()
break

entity soul = player.GetTitanSoul()
entity core = player.GetOffhandWeapons()[3]
entity core = player.GetOffhandWeapon( OFFHAND_EQUIPMENT )

if ( !IsValid( core ) )
break

string coreName = core.GetWeaponClassName()
array<string> coreMods = core.GetMods()

Expand Down

0 comments on commit 7266650

Please sign in to comment.