Fixed a bug were bigoverlay wouldn't show in editor due to fog of war. Debug bigoverlay tiles are now disabled.

This commit is contained in:
Justin Marshall
2020-07-24 20:37:46 -07:00
parent 06ab957c18
commit ea4d95860a
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -57,7 +57,7 @@ void BigOverlay::draw_it(void) {
CELL cell = Coord_Cell(position);
CellClass* cellptr = &(Map)[cell];
if (!(cellptr->Is_Mapped(PlayerPtr) && cellptr->Is_Visible(PlayerPtr)))
if ((!(cellptr->Is_Mapped(PlayerPtr) && cellptr->Is_Visible(PlayerPtr))) && !Debug_Unshroud)
return;
int screenx, screeny;