Added inner lake corners...

This commit is contained in:
Ognjen Milan Robovic 2024-05-25 14:20:43 -04:00
parent 4be93b4380
commit 1d0e71f814
7 changed files with 8 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View File

@ -139,6 +139,14 @@ package body world is
map.tiles (lake_x + x, lake_y + y - 1) := 29;
elsif matrix = ((0, 1), (1, 1)) then
map.tiles (lake_x + x, lake_y + y) := 31;
elsif matrix = ((0, 0), (0, 1)) then
map.tiles (lake_x + x, lake_y + y) := 32;
elsif matrix = ((0, 0), (1, 0)) then
map.tiles (lake_x + x, lake_y + y - 1) := 34;
elsif matrix = ((0, 1), (0, 0)) then
map.tiles (lake_x + x - 1, lake_y + y) := 33;
elsif matrix = ((1, 0), (0, 0)) then
map.tiles (lake_x + x - 1, lake_y + y - 1) := 35;
--~elsif matrix = ((1, 1), (1, 0)) then
end if;
end;