SmallJoker
2022-11-24 521c0b74bba5dd73cf7c0a59fde4a018813e835d
technic/machines/supply_converter.lua
@@ -157,7 +157,8 @@
         local demand = 0
         if enabled then
            -- Reverse evaluate the required machine and round to a nice number
            demand = 100 * math.ceil((sw_meta:get_int("demand") / efficiency) / 100)
            demand = sw_meta:get_int("ba_demand") + sw_meta:get_int("demand")
            demand = 100 * math.ceil(demand / efficiency / 100)
            -- Do not draw more than the limit
            demand = math.min(demand, meta:get_int("power"))
         end