Added inner lake corners...
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
@ -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;
|
||||
|