Skip to content

Commit

Permalink
Changed res to user directory entry.gd
Browse files Browse the repository at this point in the history
  • Loading branch information
mareksc committed Nov 29, 2021
1 parent 903af2d commit 3a9572a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/Entry.gd
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func _fetch_github_wiki() -> void:
var http_node = HTTPRequest.new()
http_node.set_use_threads(true)
add_child(http_node)
var output_name = "./media/wiki/" + page + ".md"
var output_name = "user://" + page + ".md"
http_node.set_download_file(output_name)
var download_link = base_url + page + ".md"
var error = http_node.request(download_link)
Expand Down

0 comments on commit 3a9572a

Please sign in to comment.