Merge pull request #9 from davehutz/KILN-009

Fix cost calculation
pull/175/head
davehutz 2023-09-27 17:37:17 -06:00 zatwierdzone przez GitHub
commit dba7b69ddd
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -555,7 +555,7 @@ class RealOven(Oven):
# self.heat is for the front end to display if the heat is on
self.heat = 0.0
if heat_on > 0:
self.heat = 1.0
self.heat = heat_on
if heat_on:
self.output.heat(heat_on)