fix: Corrected error message for angle in esc_movable

This commit is contained in:
Balloonpopper
2022-12-30 12:11:01 +11:00
committed by Julian Murgia
parent 0ea7b285b7
commit 5f78c026da

View File

@@ -377,7 +377,7 @@ func _get_dir_deg(deg: int, animations: ESCAnimationResource) -> int:
if dir == -1:
escoria.logger.error(
self,
"No animation has been configured for angle %s." + str(deg)
"No animation has been configured for angle %s." % str(deg)
)
return dir