Emergency fix: undo breaking change

This commit is contained in:
Raymond 2021-05-31 10:18:00 -04:00 committed by GitHub
parent ecff7c490c
commit af3ee66256
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,7 +32,7 @@ namespace Dalamud.Game.ClientState.Structs.JobGauge
/// <summary>
/// Gets the next step in the current dance.
/// </summary>
public ulong NextStep => (ulong)(15999 + this.stepOrder[this.NumCompleteSteps] - 1);
public ulong NextStep() => (ulong)(15999 + this.stepOrder[this.NumCompleteSteps] - 1);
/// <summary>
/// Gets if the player is dancing or not.