Skip to content

Commit

Permalink
Fix for GL ammo not added to the player inv (#57)
Browse files Browse the repository at this point in the history
Fix for GL ammo not added to player inv
  • Loading branch information
Thibugs authored Jun 24, 2023
1 parent 9f49131 commit 61f074b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions addons/gsri_props/lockers/Functions/fn_gearAsGcap.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,13 @@ switch(_role) do
};
case "Grenadier": {
for "_i" from 1 to 10 do {
this addItemToBackpack "1Rnd_HE_Grenade_shell";
player addItemToBackpack "1Rnd_HE_Grenade_shell";
};
for "_i" from 1 to 10 do {
this addItemToBackpack "ACE_40mm_Flare_white";
player addItemToBackpack "ACE_40mm_Flare_white";
};
for "_i" from 1 to 10 do {
this addItemToBackpack "1Rnd_Smoke_Grenade_shell";
player addItemToBackpack "1Rnd_Smoke_Grenade_shell";
};
};
case "Lead": {
Expand Down

0 comments on commit 61f074b

Please sign in to comment.