Fix a bug when console cleans up

This commit is contained in:
excitedneon 2017-05-11 01:48:28 +03:00
parent 2854a093fc
commit 674c43f2df
1 changed files with 1 additions and 1 deletions

View File

@ -149,7 +149,7 @@ namespace Cyber.Console {
string NewLog = "";
Lines.RemoveRange(0, Lines.Count - LineCountSavedFromCleanup);
foreach (string Line in Lines) {
NewLog += Line;
NewLog += Line + "\n";
}
TextField.text = NewLog;
}