Change return to continue in gamerulesystem (#27656)
Update GameRuleSystem.cs
This commit is contained in:
parent
1d5392f86b
commit
96a3967c3f
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ public abstract partial class GameRuleSystem<T> : EntitySystem where T : ICompon
|
|||
while (query.MoveNext(out var uid, out var comp))
|
||||
{
|
||||
if (!TryComp<GameRuleComponent>(uid, out var ruleData))
|
||||
return;
|
||||
continue;
|
||||
|
||||
AppendRoundEndText(uid, comp, ruleData, ref ev);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue