Skip to content

Commit f4dee85

Browse files
authored
Fixed initial exploring looking through corners (#3856)
1 parent b98662f commit f4dee85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/player_utils.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -561,9 +561,9 @@ void fill_in_explored_area(PlayerNumber plyr_idx, MapSubtlCoord stl_x, MapSubtlC
561561
{
562562
{ 0, 0},
563563
{ 1,-1},
564-
{ 1, 1},
565-
{-1, 1},
566564
{-1,-1},
565+
{-1, 1},
566+
{ 1, 1},
567567
{ 0, 0}
568568
};
569569

0 commit comments

Comments
 (0)