Hotfix dragon round end text (#11925)

This commit is contained in:
metalgearsloth
2022-10-16 07:24:19 +11:00
committed by GitHub
parent 11eea0ddd9
commit bcec58720b

View File

@@ -48,6 +48,11 @@ public sealed partial class DragonSystem
if (!RuleAdded)
return;
var dragons = EntityQuery<DragonComponent>(true).ToList();
if (dragons.Count == 0)
return;
args.AddLine(Loc.GetString("dragon-round-end-summary"));
foreach (var dragon in EntityQuery<DragonComponent>(true))