makes it so that you can start surfing even if standing on water

This commit is contained in:
infinitefusion
2023-05-07 19:55:39 -04:00
parent bb8b9130c3
commit c08371da52
5 changed files with 1 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ def download_sprite(base_path, head_id, body_id, saveLocation = "Graphics/temp",
downloaded_file_name = _INTL("{1}/{2}.{3}{4}.png", saveLocation, head_id, body_id,alt_letter)
return downloaded_file_name if pbResolveBitmap(downloaded_file_name)
url = _INTL(base_path, head_id, body_id)
echo "\nSending request to " + url
#echo "\nSending request to " + url
response = HTTPLite.get(url)
if response[:status] == 200
File.open(downloaded_file_name, "wb") do |file|