Skip to content

Commit

Permalink
Fixed a rendering glitch when facing the well in the woods with both …
Browse files Browse the repository at this point in the history
…the crucifix & empty bottle
  • Loading branch information
Lucas-C committed Mar 7, 2021
1 parent 2132e4d commit 05a5cbf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## [0.9.6] - 2021-03-07
### Fixed
- rendering glitch when facing the well in the woods with both crucifix & empty bottle
- a missing newline during "Seamus through bars" dialog

## [0.9.5] - 2021-03-05
### Added
- new monster & puzzle to defeat it : the Gorgon!
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!-- NEXT STEPS:
- check HOW TO PLAY & SEAMUS TRHOUGH CELL new rendering
- reduce the 1324x16 & 1598x16 states of the final fight 2 phases ?
- add SFX for spells: cf. https://www.patreon.com/posts/dark-magic-8600078 & https://www.patreon.com/posts/light-magic-8781428 + attacks-sfx.md
- create itch.io page
- Androïd & Linux PDF readers?
Expand Down
2 changes: 1 addition & 1 deletion pdf_game/mod/scenes.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def seamus_through_small_window():
next_scene_id=dialog_5.id,
)
dialog_3 = CutScene.new(
extra_render=seamus_speaks("For your safety I brought\nyou inside this Monastery.\nBut I can't come back inside, as monks turned into demons!", behind_bars=True),
extra_render=seamus_speaks("For your safety I brought\nyou inside this Monastery.\nBut I can't come back inside,\nas monks turned into demons!", behind_bars=True),
next_scene_id=dialog_4.id,
)
dialog_2 = CutScene.new(
Expand Down
2 changes: 1 addition & 1 deletion pdf_game/render_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
'BLUE_KEY': Position(x=140, y=88),
'CRUCIFIX': Position(x=140, y=88),
'HAND_MIRROR': Position(x=140, y=88),
'EMPTY_BOTTLE': Position(x=140, y=88),
'EMPTY_BOTTLE': Position(x=120, y=88), # can be carried with CRUCIFIX and used at the same place!
'FISH': Position(x=140, y=88),
'FISH_ON_A_STICK': Position(x=140, y=88),
'PUT_STICK_IN_LEVER': Position(x=136, y=97),
Expand Down

0 comments on commit 05a5cbf

Please sign in to comment.