adds scryfall required delay

This commit is contained in:
Nathan Singer 2025-04-23 22:20:06 -04:00
parent 77da7cf6b2
commit d726290cf2

View File

@ -22,7 +22,9 @@ func fetch_card(id: String) -> void:
return
await _do_http_request_card(id)
OS.delay_msec(100)
await _do_http_request_imgs(id, _png_path, true)
OS.delay_msec(100)
await _do_http_request_imgs(id, _jpg_path, false)
cache_done.emit()