bugfix: delete report_errors calls

This commit is contained in:
2023-10-16 22:11:22 +02:00
parent ca1a0fd73b
commit aeacaa09cd
2 changed files with 4 additions and 4 deletions

View File

@@ -23,9 +23,9 @@ func configure() -> ESCCommandArgumentDescriptor:
# Validate wether the given arguments match the command descriptor # Validate wether the given arguments match the command descriptor
func validate(arguments: Array): func validate(arguments: Array):
if not escoria.object_manager.has(arguments[0]): if not escoria.object_manager.has(arguments[0]):
escoria.logger.report_errors( escoria.logger.error(
"item_count_add: invalid object", self,
["Object %s not registered" % arguments[0]] "Object %s not registered" % arguments[0]
) )
return false return false

View File

@@ -25,6 +25,6 @@ set_angle player 180
set_gui_visible false set_gui_visible false
walk_block player puerta_cocina_start walk_block player puerta_cocina_start
set_angle player 90 set_angle player 90
queue_event eneko_smoking intro_dialog # queue_event eneko_smoking intro_dialog
set_gui_visible true set_gui_visible true
accept_input ALL accept_input ALL