diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-03-04 23:58:38 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-03-04 23:58:38 -0500 |
commit | a46f07cbfbd9ae59b7b1cc2fc32f68c39ae34de0 (patch) | |
tree | 5358ecc88cd634e7277bf04e51be8e9ddd37b2aa /technic/machines | |
parent | 3eb0b959da58a153e4b9fc7f70eb513b1cf0e5fd (diff) | |
download | dreambuilder_modpack-a46f07cbfbd9ae59b7b1cc2fc32f68c39ae34de0.tar dreambuilder_modpack-a46f07cbfbd9ae59b7b1cc2fc32f68c39ae34de0.tar.gz dreambuilder_modpack-a46f07cbfbd9ae59b7b1cc2fc32f68c39ae34de0.tar.bz2 dreambuilder_modpack-a46f07cbfbd9ae59b7b1cc2fc32f68c39ae34de0.tar.xz dreambuilder_modpack-a46f07cbfbd9ae59b7b1cc2fc32f68c39ae34de0.zip |
updated digilines, framedglass, mesecons, pipeworks, quartz
technic, unifiedinventory, and unifiedbricks
Diffstat (limited to 'technic/machines')
-rw-r--r-- | technic/machines/LV/water_mill.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/technic/machines/LV/water_mill.lua b/technic/machines/LV/water_mill.lua index 56b3abd..acb778c 100644 --- a/technic/machines/LV/water_mill.lua +++ b/technic/machines/LV/water_mill.lua @@ -30,7 +30,7 @@ local run = function(pos, node) local lava_nodes = 0 local production_level = 0 local eu_supply = 0 - local max_output = 50 * 45 -- four param2's at 15 makes 60, cap it lower for "overload protection" + local max_output = 35 * 45 -- four param2's at 15 makes 60, cap it lower for "overload protection" -- (plus we want the gen to report 100% if three sides have full flow) local positions = { @@ -47,7 +47,7 @@ local run = function(pos, node) end end - eu_supply = math.min(50 * water_flow, max_output) + eu_supply = math.min(35 * water_flow, max_output) production_level = math.floor(100 * eu_supply / max_output) if production_level > 0 then |