Merge pull request #11619 from pchote/fix-depot-sell

Fix service depot selling.
This commit is contained in:
Matthias Mailänder
2016-07-09 21:17:06 +02:00
committed by GitHub
3 changed files with 21 additions and 7 deletions

View File

@@ -74,7 +74,7 @@ namespace OpenRA.Mods.Common.Activities
self.InflictDamage(self, -hpToRepair, null);
foreach (var depot in host.TraitsImplementing<INotifyRepair>())
depot.Repairing(self, host);
depot.Repairing(host, self);
remainingTicks = repairsUnits.Interval;
}