Skip to content

Commit

Permalink
increase darts and flare darts (not tranq darts)
Browse files Browse the repository at this point in the history
  • Loading branch information
Die4Ever committed Jul 30, 2024
1 parent fdb80d6 commit 6f6717b
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion DXRModules/DeusEx/Classes/DXRReduceItems.uc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ replication
function CheckConfig()
{
local int i;
if( ConfigOlderThan(3,0,1,1) ) {
if( ConfigOlderThan(3,0,1,4) ) {
min_rate_adjust = 0.3;
max_rate_adjust = 1.75;

Expand Down Expand Up @@ -58,6 +58,14 @@ function CheckConfig()
item_reductions[i].percent = 85;
i++;

item_reductions[i].type = "AmmoDart";
item_reductions[i].percent = 120;
i++;

item_reductions[i].type = "AmmoDartFlare";
item_reductions[i].percent = 120;
i++;

i=0;
max_ammo[i].type = "Ammo10mm";
max_ammo[i].percent = 60;
Expand All @@ -74,6 +82,14 @@ function CheckConfig()
max_ammo[i].type = "AmmoShell";
max_ammo[i].percent = 85;
i++;

max_ammo[i].type = "AmmoDart";
max_ammo[i].percent = 130;
i++;

max_ammo[i].type = "AmmoDartFlare";
max_ammo[i].percent = 130;
i++;
}
Super.CheckConfig();

Expand Down

1 comment on commit 6f6717b

@Die4Ever
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.