From 0846ec8aa1024410004e97b25a96af456119d850 Mon Sep 17 00:00:00 2001 From: oranges Date: Mon, 20 Nov 2017 11:07:16 +1300 Subject: [PATCH] Reduce memory requirements for ss13 This saves having to purchase several terabytes of RAM to run ss13 --- TGS.Server/Instance/DreamDaemon.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TGS.Server/Instance/DreamDaemon.cs b/TGS.Server/Instance/DreamDaemon.cs index 28e9c5e50d..cf27aedce9 100644 --- a/TGS.Server/Instance/DreamDaemon.cs +++ b/TGS.Server/Instance/DreamDaemon.cs @@ -462,7 +462,7 @@ namespace TGS.Server megamem = Convert.ToUInt64(pcm.NextValue()) / 1024; } var PercentCpuTime = (int)Math.Round((Decimal)cputime); - WriteCurrentDDLog(String.Format("CPU: {1}% Memory: {0}MB", megamem, PercentCpuTime.ToString("D3"))); + WriteCurrentDDLog(String.Format("CPU: {1}% Memory: {0}KB", megamem, PercentCpuTime.ToString("D3"))); } ///