diff options
author | Zefram <zefram@fysh.org> | 2014-07-23 23:40:21 +0100 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2014-07-23 18:45:50 -0400 |
commit | e11f0f8817bf263ad7ca4512757279ac01f62fc1 (patch) | |
tree | 3a88c25f0794b96199b6c75d50e8363095fbbdc0 | |
parent | c5e9480d99af35dd646e525bb20608cc0ca5c1ab (diff) |
Tweak corium light settings
Flowing corium appeared too dark.
-rw-r--r-- | technic/machines/HV/nuclear_reactor.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/technic/machines/HV/nuclear_reactor.lua b/technic/machines/HV/nuclear_reactor.lua index 003ca6b..b240a9d 100644 --- a/technic/machines/HV/nuclear_reactor.lua +++ b/technic/machines/HV/nuclear_reactor.lua @@ -287,7 +287,7 @@ for _, state in ipairs({ "flowing", "source" }) do }}, paramtype = "light", paramtype2 = (state == "flowing" and "flowingliquid" or nil), - light_source = (state == "source" and 4 or 3), + light_source = (state == "source" and 8 or 5), walkable = false, pointable = false, diggable = false, |