aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Bitspace 2.0/Bitspace 2.0/Program.cs3
1 files changed, 2 insertions, 1 deletions
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]));