mirror of
https://github.com/Steffo99/flyingsnake.git
synced 2024-12-22 14:44:17 +00:00
Bump version
This commit is contained in:
parent
409de0cb4e
commit
9b8be6c812
1 changed files with 4 additions and 4 deletions
|
@ -64,7 +64,7 @@ def flyingsnake(input_file: str,
|
||||||
if tile.wall:
|
if tile.wall:
|
||||||
draw.point((x, y), tuple(colors["Walls"][str(tile.wall.type.value)]))
|
draw.point((x, y), tuple(colors["Walls"][str(tile.wall.type.value)]))
|
||||||
if not x % 100:
|
if not x % 100:
|
||||||
c.echo(f"{x} / {world.size.x} columns done")
|
c.echo(f"{x} / {world.size.x} rows done")
|
||||||
del draw
|
del draw
|
||||||
to_merge.append(walls)
|
to_merge.append(walls)
|
||||||
|
|
||||||
|
@ -83,7 +83,7 @@ def flyingsnake(input_file: str,
|
||||||
elif tile.liquid.type == li.tiles.LiquidType.HONEY:
|
elif tile.liquid.type == li.tiles.LiquidType.HONEY:
|
||||||
draw.point((x, y), tuple(colors["Globals"]["Honey"]))
|
draw.point((x, y), tuple(colors["Globals"]["Honey"]))
|
||||||
if not x % 100:
|
if not x % 100:
|
||||||
c.echo(f"{x} / {world.size.x} columns done")
|
c.echo(f"{x} / {world.size.x} rows done")
|
||||||
del draw
|
del draw
|
||||||
to_merge.append(liquids)
|
to_merge.append(liquids)
|
||||||
|
|
||||||
|
@ -97,7 +97,7 @@ def flyingsnake(input_file: str,
|
||||||
if tile.block:
|
if tile.block:
|
||||||
draw.point((x, y), tuple(colors["Blocks"][str(tile.block.type.value)]))
|
draw.point((x, y), tuple(colors["Blocks"][str(tile.block.type.value)]))
|
||||||
if not x % 100:
|
if not x % 100:
|
||||||
c.echo(f"{x} / {world.size.x} columns done")
|
c.echo(f"{x} / {world.size.x} rows done")
|
||||||
del draw
|
del draw
|
||||||
to_merge.append(blocks)
|
to_merge.append(blocks)
|
||||||
|
|
||||||
|
@ -118,7 +118,7 @@ def flyingsnake(input_file: str,
|
||||||
if tile.wiring.yellow:
|
if tile.wiring.yellow:
|
||||||
draw.point((x, y), tuple(colors["Globals"]["Wire3"]))
|
draw.point((x, y), tuple(colors["Globals"]["Wire3"]))
|
||||||
if not x % 100:
|
if not x % 100:
|
||||||
c.echo(f"{x} / {world.size.x} columns done")
|
c.echo(f"{x} / {world.size.x} rows done")
|
||||||
del draw
|
del draw
|
||||||
to_merge.append(wires)
|
to_merge.append(wires)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue