Nerfs cargos minimum starting balance (#3468)

* e

* Aight

* Done
This commit is contained in:
Swept
2021-03-01 20:56:38 +00:00
committed by GitHub
parent b2d91da387
commit 45a09bc7ea
3 changed files with 37 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections.Generic;
using Robust.Client.UserInterface.Controls;
using Robust.Client.UserInterface.CustomControls;
using Robust.Shared.IoC;
@@ -38,7 +38,7 @@ namespace Content.Client.UserInterface.Cargo
HorizontalExpand = true,
Value = 1
};
Amount.SetButtons(new List<int>() { -100, -10, -1 }, new List<int>() { 1, 10, 100 });
Amount.SetButtons(new List<int>() { -3, -2, -1 }, new List<int>() { 1, 2, 3 });
Amount.IsValid = (n) => {
return (n > 0);
};