From 5f05f6ce4c577bbb1c85e63cb6ad2dcda9e069cf Mon Sep 17 00:00:00 2001 From: Syndamia Date: Thu, 19 Sep 2019 18:50:56 +0300 Subject: Update Program.cs --- Bitspace 2.0/Bitspace 2.0/Program.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'Bitspace 2.0') diff --git a/Bitspace 2.0/Bitspace 2.0/Program.cs b/Bitspace 2.0/Bitspace 2.0/Program.cs index e249b19..e738084 100644 --- a/Bitspace 2.0/Bitspace 2.0/Program.cs +++ b/Bitspace 2.0/Bitspace 2.0/Program.cs @@ -12,6 +12,7 @@ namespace Bitspace_2._0 { static void Main(string[] args) { Console.CursorVisible = false; Menu.StartMenu(); + Console.Clear(); for (ulong gameTick = 0; ; gameTick++, Thread.Sleep(80)) { if (Console.KeyAvailable) { @@ -30,7 +31,7 @@ namespace Bitspace_2._0 { } } - if (gameTick % 3 == 0) { + if (gameTick % 4 == 0) { if (Creatures.AllAliveCreatures.Count() > 0) { foreach (var currCreature in Creatures.AllAliveCreatures) { currCreature.GetAffectedByBiome(Map.Biomes.Values.First(b => b.Ground == Map.MapLayer[currCreature.YPos][currCreature.XPos])); -- cgit v1.2.3