chore: storing version and changelog

This commit is contained in:
StraToN
2022-04-30 19:51:16 +00:00
parent f9e39af798
commit 63e22e5fb9
2 changed files with 10 additions and 1 deletions

View File

@@ -1,3 +1,12 @@
## [4.0.0-alpha.176](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.176) (2022-04-30)
### Bug Fixes
* avoids crashing when selected_action is null ([#586](https://github.com/godot-escoria/escoria-demo-game/issues/586)) ([f9e39af](https://github.com/godot-escoria/escoria-demo-game/commit/f9e39af7989b7a01bfbac119dff6f7b7b5f8df5d))
## [4.0.0-alpha.175](https://github.com/godot-escoria/escoria-demo-game/compare/v0.0.0...v4.0.0-alpha.175) (2022-04-30)

View File

@@ -183,7 +183,7 @@ func right_click_on_item(item_global_id: String, event: InputEvent) -> void:
element_focused(item_global_id)
var object = escoria.object_manager.get_object(item_global_id)
if object != null:
verbs_menu.set_by_name(object.node.default_action)
verbs_menu.set_by_name(object.node.default_action)
if verbs_menu.selected_action == null:
return