Python round to even bugfix.

`{"stock":10.494533,"consume":10.5}` rounds to 0
This commit is contained in:
Eriks K 2020-11-16 11:52:27 +02:00
parent a1c26468eb
commit a51c3c620e

View File

@ -2569,7 +2569,7 @@ class Citizen(CitizenAnniversary, CitizenCompanies, CitizenEconomy, CitizenLeade
if raw_kind: if raw_kind:
raw_kind = raw_kind.group(1) raw_kind = raw_kind.group(1)
result = response.get("result", {}) result = response.get("result", {})
amount_needed = round(result.get("consume", 0) - result.get("stock", 0) + 0.49) amount_needed = round(result.get("consume", 0) - result.get("stock", 0) + 0.5)
self._report_action( self._report_action(
'WORK_AS_MANAGER', f"Unable to wam! Missing {amount_needed} {raw_kind}, will try to buy.", 'WORK_AS_MANAGER', f"Unable to wam! Missing {amount_needed} {raw_kind}, will try to buy.",
kwargs=response kwargs=response