From 3b06c15e087f915f94dde73216f32e367d36c16a 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 48b46a5..3020891 100644 --- a/src/client/main.ts +++ b/src/client/main.ts @@ -1,5 +1,9 @@ import type { InitResponse } from '../shared/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;