mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-13 12:14:16 +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++)
|
for (; i < StatusListLength; i++)
|
||||||
{
|
{
|
||||||
var status = this[i];
|
var status = this[i];
|
||||||
if (status == null || status.StatusID == 0)
|
if (status == null || status.StatusId == 0)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -131,7 +131,7 @@ namespace Dalamud.Game.ClientState.Statuses
|
||||||
{
|
{
|
||||||
var status = this[i];
|
var status = this[i];
|
||||||
|
|
||||||
if (status == null || status.StatusID == 0)
|
if (status == null || status.StatusId == 0)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
yield return status;
|
yield return status;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue