From 8bd6e9c6aa40dbea1bee536aca492c98f2af1e2f Mon Sep 17 00:00:00 2001 From: Luke Date: Thu, 5 Feb 2026 12:35:10 +0000 Subject: [PATCH] Updating a gamemaker game within the IDE no longer triggers devvit to upload the changes. To fix this, the main.ts now imports the runner config (which changes on each GameMaker build) which then triggers devvit to perform an update --- src/client/main.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/client/main.ts b/src/client/main.ts index 2ae5b5b..b17de21 100644 --- a/src/client/main.ts +++ b/src/client/main.ts @@ -1,5 +1,9 @@ import { InitResponse } from "../shared/types/api"; +// import runner.json for game to trigger devvit reupload upon change +import GMRunnerConfig from "./public/runner.json" +void GMRunnerConfig; + declare global { interface Window { Module: any;