diff --git a/packages-user/client-modules/src/action/hotkey.ts b/packages-user/client-modules/src/action/hotkey.ts index 97ef6ee..8bca5c7 100644 --- a/packages-user/client-modules/src/action/hotkey.ts +++ b/packages-user/client-modules/src/action/hotkey.ts @@ -485,9 +485,6 @@ gameKey .realize('book', () => { core.openBook(true); }) - .realize('load', () => { - core.load(true); - }) .realize('toolbox', () => { core.openToolbox(true); }) diff --git a/packages-user/client-modules/src/render/action.ts b/packages-user/client-modules/src/render/action.ts index 1ce6849..99606b5 100644 --- a/packages-user/client-modules/src/render/action.ts +++ b/packages-user/client-modules/src/render/action.ts @@ -1,6 +1,6 @@ import { gameKey } from '@motajs/system-action'; import { MAIN_WIDTH, MAIN_HEIGHT } from './shared'; -import { saveSave, mainUIController, openStatistics } from './ui'; +import { saveSave, mainUIController, openStatistics, saveLoad } from './ui'; export function createAction() { gameKey @@ -9,5 +9,8 @@ export function createAction() { }) .realize('statistics', () => { openStatistics(mainUIController); + }) + .realize('load', () => { + saveLoad(mainUIController, [0, 0, MAIN_WIDTH, MAIN_HEIGHT]); }); }