From 4fc3c7385536d274c73e17e13d7c416644dbae5c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 12 Oct 2019 14:40:33 +0200 Subject: [PATCH] fixed the racing marker in Crystal344 --- graph.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/graph.cpp b/graph.cpp index c7d68c2e..de56e86b 100644 --- a/graph.cpp +++ b/graph.cpp @@ -8145,6 +8145,7 @@ EX bool inscreenrange(cell *c) { if(sphere) return true; if(euclid) return celldistance(viewcenter(), c) <= get_sightrange_ambush(); if(nonisotropic) return gmatrix.count(c); + if(geometry == gCrystal344) return gmatrix.count(c); return heptdistance(viewcenter(), c) <= 8; }