1
0
mirror of https://github.com/Paintball/BO2-GSC-Releases.git synced 2025-06-07 21:38:02 -05:00

Update overwrite_default_class.gsc

This commit is contained in:
Paintball 2020-04-04 10:43:03 -07:00 committed by GitHub
parent bc0e87a2c1
commit 5211ed452e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,8 +49,8 @@ doRandomLoadout()
self.Tactical = strTok("trophy_system_mp,sensor_grenade_mp,emp_grenade_mp,proximity_grenade_mp,flash_grenade_mp,willy_pete_mp", ",");
self.Frag = strTok("satchel_charge_mp,bouncingbetty_mp,claymore_mp,sticky_grenade_mp,frag_grenade_mp,hatchet_mp", ",");
self.RandPrimary = RandomInt(self.Sniper.size);
self.RandSecondary = RandomInt(self.Weapon.size);
self.RandPrimary = RandomInt(self.Primary.size);
self.RandSecondary = RandomInt(self.Secondary.size);
self.RandTactical = RandomInt(self.Tactical.size);
self.RandFrag = RandomInt(self.Frag.size);