From 8e1302b57bbd4c55b3ad2d5b0f0a15ee08436eba Mon Sep 17 00:00:00 2001 From: StraToN Date: Thu, 17 Mar 2022 21:33:42 +0000 Subject: [PATCH] chore: storing version and changelog --- CHANGELOG.md | 4 ++++ addons/escoria-core/game/core-scripts/esc_item.gd | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55e3bf46..356ea0a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## [4.0.0-alpha.139](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.139) (2022-03-17) + + + ## [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) diff --git a/addons/escoria-core/game/core-scripts/esc_item.gd b/addons/escoria-core/game/core-scripts/esc_item.gd index 38890a2b..24874af6 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 )