diff --git a/CHANGELOG.md b/CHANGELOG.md index 483dd4c0..55e3bf46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [4.0.0-alpha.138](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.138) (2022-03-17) + + + ## [4.0.0-alpha.137](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.137) (2022-03-17) diff --git a/addons/escoria-core/game/core-scripts/esc_item.gd b/addons/escoria-core/game/core-scripts/esc_item.gd index 06e32902..38890a2b 100644 --- a/addons/escoria-core/game/core-scripts/esc_item.gd +++ b/addons/escoria-core/game/core-scripts/esc_item.gd @@ -508,10 +508,10 @@ func stop_talking(): and _movable.last_dir < animations.speaks.size(): if get_animation_player().is_playing(): get_animation_player().stop() - + if animations.speaks[_movable.last_dir].mirrored: _sprite_node.scale.x *= -1 - + get_animation_player().play( animations.idles[_movable.last_dir].animation )