refactor: update default speed options for player settings

This commit is contained in:
Dr-Blank 2024-10-02 02:39:33 -04:00
parent ce74ead2b3
commit 4c5dc53169
No known key found for this signature in database
GPG key ID: 7452CC63F210A266
3 changed files with 3 additions and 3 deletions

View file

@ -73,7 +73,7 @@ _$PlayerSettingsImpl _$$PlayerSettingsImplFromJson(Map<String, dynamic> json) =>
speedOptions: (json['speedOptions'] as List<dynamic>?)
?.map((e) => (e as num).toDouble())
.toList() ??
const [0.75, 1, 1.25, 1.5, 1.75, 2],
const [1, 1.25, 1.5, 1.75, 2],
speedIncrement: (json['speedIncrement'] as num?)?.toDouble() ?? 0.05,
minSpeed: (json['minSpeed'] as num?)?.toDouble() ?? 0.1,
maxSpeed: (json['maxSpeed'] as num?)?.toDouble() ?? 4,