From ff6b9034767fd4f4ab8298548839e382ee7f5fa2 Mon Sep 17 00:00:00 2001 From: duralakun Date: Wed, 6 Mar 2019 18:24:24 +0100 Subject: [PATCH] Increase home marker range on birth --- gameSource/LivingLifePage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gameSource/LivingLifePage.cpp b/gameSource/LivingLifePage.cpp index 02aa17c88..a9fe9052a 100644 --- a/gameSource/LivingLifePage.cpp +++ b/gameSource/LivingLifePage.cpp @@ -11280,7 +11280,7 @@ void LivingLifePage::step() { // only if marker starts on birth screen // use distance squared here, no need for sqrt - double closestDist = 5 * 5; + double closestDist = 100 * 100; int mapCenterY = y + sizeY / 2; int mapCenterX = x + sizeX / 2;