Make SpiceBloom interfaces explicit

This commit is contained in:
reaperrr
2016-11-04 23:20:01 +01:00
parent 977cc0e367
commit 0a53a2022e

View File

@@ -93,7 +93,7 @@ namespace OpenRA.Mods.D2k.Traits
anim.Animation.Play(info.GrowthSequences[0]); anim.Animation.Play(info.GrowthSequences[0]);
} }
public void Tick(Actor self) void ITick.Tick(Actor self)
{ {
if (!self.World.Map.Contains(self.Location)) if (!self.World.Map.Contains(self.Location))
return; return;
@@ -158,7 +158,7 @@ namespace OpenRA.Mods.D2k.Traits
} }
} }
public void Killed(Actor self, AttackInfo e) void INotifyKilled.Killed(Actor self, AttackInfo e)
{ {
if (!string.IsNullOrEmpty(info.Weapon)) if (!string.IsNullOrEmpty(info.Weapon))
SeedResources(self); SeedResources(self);