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

@@ -16,7 +16,7 @@ namespace Content.Server.GameObjects.EntitySystems
/// <summary>
/// How many points to give to every bank account every <see cref="Delay"/> seconds.
/// </summary>
private const int PointIncrease = 10;
private const int PointIncrease = 20;
/// <summary>
/// Keeps track of how much time has elapsed since last balance increase.
@@ -45,7 +45,7 @@ namespace Content.Server.GameObjects.EntitySystems
public override void Initialize()
{
CreateBankAccount("Orbital Monitor IV Station", 100000);
CreateBankAccount("Space Station 14", 1000);
CreateOrderDatabase(0);
}