Skip to content

Commit

Permalink
Update version to 0.9.1
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Furtak <[email protected]>
  • Loading branch information
kfurtak1024 committed Nov 16, 2020
1 parent aa56c58 commit 5a4fcdb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bansoko/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Main Bansoko module exposing game globals.
"""
__version__ = "0.9.0"
__version__ = "0.9.1"

GAME_FRAME_RATE = 30
GAME_FRAME_TIME_IN_MS = 1_000 / GAME_FRAME_RATE
Expand Down
6 changes: 1 addition & 5 deletions bansoko/game/screens/playfield.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,7 @@ def update(self, dt_in_ms: float) -> ScreenController:
return self

def draw(self, draw_as_secondary: bool = False) -> None:
if draw_as_secondary:
pyxel.cls(0)
else:
self._draw_level()

pyxel.cls(0) if draw_as_secondary else self._draw_level()
super().draw(draw_as_secondary)
self._draw_level_statistics()

Expand Down
1 change: 1 addition & 0 deletions resbuilder/resources/background_tilemaps.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ def process_tilemap_generators(input_data: Any, tile_packer: TilePacker) \
return generators


# TODO: Rename it!
@dataclass(frozen=True)
class WindowTileset:
top_left_tile: int
Expand Down

0 comments on commit 5a4fcdb

Please sign in to comment.