more hopeless tinkering, shit don't work

This commit is contained in:
2021-06-30 17:53:16 -05:00
parent e02118180e
commit 80239474ec

View File

@@ -2,13 +2,13 @@
init python: init python:
def UpdateCheck(): def UpdateCheck():
renpy.notify("Updater Ran") renpy.notify("Updater Ran")
pendingVersion = updater.UpdateVersion("https://updates.snootgame.xyz/updates.json") pendingVersion = updater.UpdateVersion("http://updates.snootgame.xyz/updates.json")
if pendingVersion == None: if pendingVersion == None:
persistent.updateresult = "No New Version is Available" persistent.updateresult = "No New Version is Available"
renpy.notify(persistent.updateresult) renpy.notify(persistent.updateresult)
else: else:
renpy.notify(persistent.updateresult + "can be downloaded") renpy.notify(persistent.updateresult + "can be downloaded")
updater.Update("https://updates.snootgame.xyz/updates.json", force=True) updater.Update("http://updates.snootgame.xyz/updates.json", force=True)
################################################################################ ################################################################################
## Initialization ## Initialization