mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
forgot something
This commit is contained in:
parent
fc800dd69b
commit
89b7dac2d1
1 changed files with 2 additions and 2 deletions
|
|
@ -46,7 +46,7 @@ namespace Dalamud.Game.ClientState.Statuses
|
|||
for (; i < StatusListLength; i++)
|
||||
{
|
||||
var status = this[i];
|
||||
if (status == null || status.StatusID == 0)
|
||||
if (status == null || status.StatusId == 0)
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
@ -131,7 +131,7 @@ namespace Dalamud.Game.ClientState.Statuses
|
|||
{
|
||||
var status = this[i];
|
||||
|
||||
if (status == null || status.StatusID == 0)
|
||||
if (status == null || status.StatusId == 0)
|
||||
continue;
|
||||
|
||||
yield return status;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue