mirror of
https://github.com/IvarK/AntimatterDimensionsSourceCode.git
synced 2024-11-10 06:02:13 +00:00
Fix errors about lines being too long.
This commit is contained in:
parent
08adeff468
commit
8cd47cc0e0
@ -28,7 +28,13 @@ export class GameOptions {
|
||||
player.options.srMode = !player.options.srMode;
|
||||
ui.view.srMode = player.options.srMode;
|
||||
GameStorage.save();
|
||||
if (player.options.srMode) GameUI.notify.info("Screen reader mode enabled. Some tricks to using this mode can now be found in certain sections of the how to play modal (open by pressing H or clicking on the question mark near the bottom of the page). You can also try setting the UI mode to classic, and don't forget to turn off animations if they slow things down.");
|
||||
if (player.options.srMode) {
|
||||
GameUI.notify.info(`Screen reader mode enabled.
|
||||
Some tricks to using this mode can now be found in certain sections of the how to play
|
||||
modal (open by pressing H or clicking on the question mark near the bottom of the page).
|
||||
You can also try setting the UI mode to classic, and
|
||||
don't forget to turn off animations if they slow things down.`);
|
||||
}
|
||||
}
|
||||
|
||||
static cloudSave() {
|
||||
|
Loading…
Reference in New Issue
Block a user