From fdfd364d4331c68c38cc8b78fdf51961ccf77773 Mon Sep 17 00:00:00 2001 From: coolestskinnieinthejungle Date: Sun, 11 Jul 2021 22:00:01 -0500 Subject: [PATCH] HOTFIX TO FIX STUPID FUCKING 6 HOUR UPDATE COOLDOWN --- game/options.rpy | 2 +- game/screens.rpy | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/game/options.rpy b/game/options.rpy index 76119cc..edc0153 100644 --- a/game/options.rpy +++ b/game/options.rpy @@ -23,7 +23,7 @@ define gui.show_name = True ## The version of the game. -define config.version = "Patchy-patch5" +define config.version = "Patchy-patch5.11" ## Text that is placed on the game's about screen. Place the text between the ## triple-quotes, and leave a blank line between paragraphs. diff --git a/game/screens.rpy b/game/screens.rpy index 4f9622d..468304f 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -8,7 +8,9 @@ init python: persistent.updateWebServer = "http://updates.snootgame.xyz/updates.json" def UpdateCheck(): - pendingVersion = updater.UpdateVersion(persistent.updateWebServer) + # WHY YES I ONLY ALLOW PEOPLE USING MY FRAMEWORK TO CHECK FOR AN UPDATE EVERY SIX FUCKING HOURS HOW DID YOU KNOW + # NOPE check_interval=5 (5 SECONDS) FUCK YOU + pendingVersion = updater.UpdateVersion(persistent.updateWebServer, check_interval=5) if pendingVersion == None or pendingVersion == config.version or "TEST" in pendingVersion: persistent.updateresult = "No new version is available" else: @@ -1262,7 +1264,8 @@ screen extrasnavigation(): imagebutton auto "gui/button/menubuttons/helpbutton_%s.png" action ShowMenu('help') imagebutton auto "gui/button/menubuttons/aboutbutton_%s.png" action ShowMenu('about') imagebutton auto "gui/button/menubuttons/updatesbutton_%s.png" action ShowMenu('updates') - imagebutton auto "gui/button/menubuttons/gallerybutton_%s.png" action ShowMenu('gallery') + #imagebutton auto "gui/button/menubuttons/gallerybutton_%s.png" action ShowMenu('gallery') + imagebutton auto "gui/button/menubuttons/gallerybutton_%s.png" action Notify('coming soon ;)') imagebutton auto "gui/button/menubuttons/returnbutton_%s.png" action ShowMenu('main_menu')