Re-disable data imports

This commit is contained in:
Flashfyre 2024-04-09 17:22:38 -04:00
parent e672ead184
commit 8ec7333b1e
1 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ export default class MenuUiHandler extends MessageUiHandler {
}); });
}; };
if (/*Utils.isLocal*/true) { if (Utils.isLocal) {
manageDataOptions.push({ manageDataOptions.push({
label: 'Import Session', label: 'Import Session',
handler: () => confirmSlot('Select a slot to import to.', () => true, slotId => this.scene.gameData.importData(GameDataType.SESSION, slotId)), handler: () => confirmSlot('Select a slot to import to.', () => true, slotId => this.scene.gameData.importData(GameDataType.SESSION, slotId)),
@ -140,7 +140,7 @@ export default class MenuUiHandler extends MessageUiHandler {
}, },
keepOpen: true keepOpen: true
}); });
if (/*Utils.isLocal*/true) { if (Utils.isLocal) {
manageDataOptions.push({ manageDataOptions.push({
label: 'Import Data', label: 'Import Data',
handler: () => this.scene.gameData.importData(GameDataType.SYSTEM), handler: () => this.scene.gameData.importData(GameDataType.SYSTEM),