bugfix: delete report_errors calls

This commit is contained in:
2023-10-16 22:11:51 +02:00
parent aeacaa09cd
commit 0c734c6998

View File

@@ -41,9 +41,9 @@ func get_item(global_id: String) -> ESCItem:
func updateSprite(item: ESCItemWithTooltip) -> void:
var child_node = item.get_node("Sprite") as Sprite
if not child_node is Sprite:
escoria.logger.report_errors(
"item_count_add: invalid sprite",
["No Sprite node found"]
escoria.logger.error(
self,
"No Sprite node found"
)
var texture_path = getCountTexturePath(item)