Fix IDE0001

This commit is contained in:
RoosterDragon
2023-02-19 09:54:24 +00:00
committed by Pavel Penev
parent ee35cbc0d0
commit 8b4500146f
5 changed files with 9 additions and 6 deletions

View File

@@ -516,12 +516,12 @@ namespace OpenRA
public void ApplyToActorsWithTraitTimed<T>(Action<Actor, T> action, string text)
{
TraitDict.ApplyToActorsWithTraitTimed<T>(action, text);
TraitDict.ApplyToActorsWithTraitTimed(action, text);
}
public void ApplyToActorsWithTrait<T>(Action<Actor, T> action)
{
TraitDict.ApplyToActorsWithTrait<T>(action);
TraitDict.ApplyToActorsWithTrait(action);
}
public IEnumerable<Actor> ActorsHavingTrait<T>()