1
0
Fork 0

Fix #8216: Don't show floating text on autoreplace if cost is 0

release/1.10
Charles Pigott 2020-06-27 15:13:13 +01:00
parent 24960b4641
commit 97504e7c29
1 changed files with 1 additions and 1 deletions

View File

@ -1045,7 +1045,7 @@ void CallVehicleTicks()
if (!IsLocalCompany()) continue;
if (res.Succeeded()) {
if (res.Succeeded() && res.GetCost() != 0) {
ShowCostOrIncomeAnimation(x, y, z, res.GetCost());
continue;
}