mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-06-08 21:58:11 +02:00
10 lines
No EOL
350 B
JavaScript
10 lines
No EOL
350 B
JavaScript
export default class DhGamePause extends foundry.applications.ui.GamePause {
|
|
/** @override */
|
|
async _prepareContext(options) {
|
|
const context = await super._prepareContext(options);
|
|
context.spin = false;
|
|
context.icon = 'systems/daggerheart/assets/logos/compatible_with_DH_logos-10.png';
|
|
|
|
return context;
|
|
}
|
|
} |