Skip to content

Commit

Permalink
fix: Fixes iterating with multiple multis in a sector (#1706)
Browse files Browse the repository at this point in the history
  • Loading branch information
kamronbatman committed Mar 10, 2024
1 parent b5342a8 commit 9e37879
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Projects/Server/Maps/Map.StaticTileEnumerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ private bool SetMulti()
ref var multis = ref _multis;
ref readonly var p = ref _point;

if (multis.MoveNext())
while (multis.MoveNext())
{
var multi = multis.Current;
_currentMulti = multi;
Expand Down

0 comments on commit 9e37879

Please sign in to comment.