Skip to content

Commit 63876ee

Browse files
authored
Merge pull request #7 from Navatusein/dev
Added Tritanium to magmatter
2 parents 20aa83f + 3f4463b commit 63876ee

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/heliofusion-exoticizer-controller.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ local plasmaList = {
119119
["Neutronium"] = "plasma.neutronium",
120120
["Rhugnor"] = "plasma.rhugnor",
121121
["Six-Phased Copper"] = "plasma.sixphasedcopper",
122+
["Tritanium"] = "plasma.tritanium",
122123
["Spatially Enlarged Fluid"] = "spatialfluid",
123124
["Tachyon Rich Temporal Fluid"] = "temporalfluid"
124125
}
@@ -423,7 +424,7 @@ function heliofusionExoticizerController:new(
423424
if label == nil then
424425
outputs[value.label] = {label = value.label, count = value.size * coefficient, isLiquid = false}
425426
else
426-
outputs[label] = {label = label, count = value.size, isLiquid = false}
427+
outputs[label] = {label = label, count = value.size * coefficient, isLiquid = false}
427428
end
428429

429430
count = count + 1

version.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local versions = {
2-
programVersion = "1.0.2",
2+
programVersion = "1.0.3",
33
configVersion = 1
44
}
55

0 commit comments

Comments
 (0)