diff --git a/OpenRA.Mods.RA/Render/WithMuzzleFlash.cs b/OpenRA.Mods.RA/Render/WithMuzzleFlash.cs index 3488ff9abe..7449085f19 100644 --- a/OpenRA.Mods.RA/Render/WithMuzzleFlash.cs +++ b/OpenRA.Mods.RA/Render/WithMuzzleFlash.cs @@ -57,14 +57,14 @@ namespace OpenRA.Mods.RA.Render mf.Animation.PlayThen("muzzle", () => isShowing = false); } - public virtual IEnumerable Render(Actor self) + public IEnumerable Render(Actor self) { foreach (var a in muzzleFlashes.Values) if (a.DisableFunc == null || !a.DisableFunc()) yield return a.Image(self, "effect"); } - public virtual void Tick(Actor self) + public void Tick(Actor self) { foreach (var a in muzzleFlashes.Values) a.Animation.Tick();