Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
feat: Added burst info to DTR bar.
Browse files Browse the repository at this point in the history
  • Loading branch information
RiotNOR committed May 14, 2023
1 parent ef29552 commit 9000450
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion RotationSolver/Commands/RSCommands_StateSpecialCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ public static partial class RSCommands

private static string PreventString => "Prevent " + (Basic.Configuration.PluginConfiguration.GetValue(SettingsCommand.PreventActions) ? "on" : "off");

private static string BurstString => "Burst " + (Basic.Configuration.PluginConfiguration.GetValue(SettingsCommand.AutoBurst) ? "on" : "off");


internal static string EntryString =>
$"{_stateString} ({AoeString}, {PreventString})" + (DataCenter.SpecialTimeLeft < 0 ? string.Empty : $" - {_specialString}: {DataCenter.SpecialTimeLeft:F2}s");
$"{_stateString} ({AoeString}, {PreventString}, {BurstString})" + (DataCenter.SpecialTimeLeft < 0 ? string.Empty : $" - {_specialString}: {DataCenter.SpecialTimeLeft:F2}s");

private static void UpdateToast()
{
Expand Down

0 comments on commit 9000450

Please sign in to comment.