Fix SI units
This commit is contained in:
parent
13febea434
commit
8233489b4c
2 changed files with 4 additions and 4 deletions
|
@ -9,15 +9,15 @@ end
|
||||||
|
|
||||||
local function solar_output()
|
local function solar_output()
|
||||||
if config("power_output") == "80kW (normal)" then
|
if config("power_output") == "80kW (normal)" then
|
||||||
return "80KW"
|
return "80kW"
|
||||||
end
|
end
|
||||||
|
|
||||||
if config("power_output") == "100kW (high)" then
|
if config("power_output") == "100kW (high)" then
|
||||||
return "100KW"
|
return "100kW"
|
||||||
end
|
end
|
||||||
|
|
||||||
if config("power_output") == "160kW (very high)" then
|
if config("power_output") == "160kW (very high)" then
|
||||||
return "160KW"
|
return "160kW"
|
||||||
end
|
end
|
||||||
|
|
||||||
return "80kW"
|
return "80kW"
|
||||||
|
|
|
@ -57,7 +57,7 @@ data:extend({
|
||||||
module_slots = 4
|
module_slots = 4
|
||||||
},
|
},
|
||||||
crafting_speed = 1,
|
crafting_speed = 1,
|
||||||
energy_usage = '500KW',
|
energy_usage = '500kW',
|
||||||
fluid_boxes = {
|
fluid_boxes = {
|
||||||
{
|
{
|
||||||
base_area = 1,
|
base_area = 1,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue