Fixed ProductionItem costs calculation.
This commit is contained in:
committed by
Mustafa Alperen Seki
parent
e1b1070bcf
commit
a57cfc7d40
@@ -582,7 +582,8 @@ namespace OpenRA.Mods.Common.Traits
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
var costThisFrame = RemainingCost / RemainingTime;
|
var expectedRemainingCost = RemainingTime == 1 ? 0 : TotalCost * RemainingTime / Math.Max(1, TotalTime);
|
||||||
|
var costThisFrame = RemainingCost - expectedRemainingCost;
|
||||||
if (costThisFrame != 0 && !pr.TakeCash(costThisFrame, true))
|
if (costThisFrame != 0 && !pr.TakeCash(costThisFrame, true))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user