Skip to content

Commit

Permalink
Apply formatting suggestion from Vlad
Browse files Browse the repository at this point in the history
Co-authored-by: Vladislav Stepanov <[email protected]>
  • Loading branch information
Miepee and VladiStep authored Nov 12, 2023
1 parent 21a1d74 commit 2042bfe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion UndertaleModLib/Models/UndertaleRoom.cs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,8 @@ public Layer BGColorLayer
{
return (_layers?.Where(l => l.LayerType is LayerType.Background
&& l.BackgroundData.Sprite is null
&& l.BackgroundData.Color != 0)).MinBy(l => l.LayerDepth);
&& l.BackgroundData.Color != 0))
.MinBy(l => l.LayerDepth);
}
}

Expand Down

0 comments on commit 2042bfe

Please sign in to comment.