diff --git a/src/engine/runtime.js b/src/engine/runtime.js index 0f0c74a86f3..5ce208a3a1f 100644 --- a/src/engine/runtime.js +++ b/src/engine/runtime.js @@ -534,6 +534,13 @@ class Runtime extends EventEmitter { * Total number of finished or errored scratch-storage load() requests since the runtime was created or cleared. */ this.finishedAssetRequests = 0; + + /** + * TW: Set of hat's to never pause. + * This is mainly for the debugger addon and extensions. + * @type {Set} + */ + this.neverPauseHats = new Set(); } /**