Skip to content

Commit

Permalink
Update RoboisseurSystem.cs
Browse files Browse the repository at this point in the history
Signed-off-by: Stop-Signs <[email protected]>
  • Loading branch information
Stop-Signs authored Sep 8, 2024
1 parent 17f1e1d commit 8c707fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/DeltaV/NPC/Roboisseur/RoboisseurSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public override void Update(float frameTime)
private void RewardServicer(EntityUid uid, RoboisseurComponent component, int tier)
{
var r = new Random();
int rewardToDispense = r.Next(100, 350) + 250 * tier;
int rewardToDispense = r.Next(500, 1000) + 350 * tier;

_material.SpawnMultipleFromMaterial(rewardToDispense, "Credit", Transform(uid).Coordinates);
if(tier > 1)
Expand Down

0 comments on commit 8c707fe

Please sign in to comment.