Re-disable data imports
parent
e672ead184
commit
8ec7333b1e
|
@ -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),
|
||||||
|
|
Loading…
Reference in New Issue