diff --git a/RemoteLoader.gd b/RemoteLoader.gd index 802385e..391bae4 100644 --- a/RemoteLoader.gd +++ b/RemoteLoader.gd @@ -30,6 +30,7 @@ func GetRemoteImage(url): error = image.load_jpg_from_buffer(res[3]) if error != OK: print("Error fetching image ", str(error)) + image.load("res://assets/fallback_card.png") image.save_png(outFile) print("Saved new image to cache. " + outFile) return image diff --git a/assets/fallback_card.png b/assets/fallback_card.png new file mode 100644 index 0000000..4827cbb Binary files /dev/null and b/assets/fallback_card.png differ