Skip to content

difficulty peak warning text is too verbose #1

Description

@telos00
if (PluginConfig.Instance.PeakWarning && _canvas && _canvas.enabled)
                    _text.text = $"You're about to reach the peak difficulty in <color=#ffa500ff>{_currentSection.toTime - _audioTimeSyncController.songTime:F1}</color> seconds!";

Can just be

if (PluginConfig.Instance.PeakWarning && _canvas && _canvas.enabled)
                    _text.text = $"Peak difficulty in <color=#ffa500ff>{_currentSection.toTime - _audioTimeSyncController.songTime:F1}</color>";
            }

it's less verbose and easier to read while in the heat of gameplay.

Metadata

Metadata

Assignees

Labels

enhancementNew feature or request

Projects

No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions