Make SpiceBloom interfaces explicit
This commit is contained in:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user