From af3ee66256cc66455e80ca8b5a574e008c205537 Mon Sep 17 00:00:00 2001 From: Raymond Date: Mon, 31 May 2021 10:18:00 -0400 Subject: [PATCH] Emergency fix: undo breaking change --- Dalamud/Game/ClientState/Structs/JobGauge/DNCGauge.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud/Game/ClientState/Structs/JobGauge/DNCGauge.cs b/Dalamud/Game/ClientState/Structs/JobGauge/DNCGauge.cs index 8e4484871..2143aa99f 100644 --- a/Dalamud/Game/ClientState/Structs/JobGauge/DNCGauge.cs +++ b/Dalamud/Game/ClientState/Structs/JobGauge/DNCGauge.cs @@ -32,7 +32,7 @@ namespace Dalamud.Game.ClientState.Structs.JobGauge /// /// Gets the next step in the current dance. /// - public ulong NextStep => (ulong)(15999 + this.stepOrder[this.NumCompleteSteps] - 1); + public ulong NextStep() => (ulong)(15999 + this.stepOrder[this.NumCompleteSteps] - 1); /// /// Gets if the player is dancing or not.