Skip to content

Commit

Permalink
Use hyphens instead of spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
Quezler committed Jan 13, 2024
1 parent 8139c6e commit ac2ea45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -276,13 +276,13 @@ local function on_created_entity(event)
for _, product in ipairs(clipboard.products) do
io_string = io_string .. string.format('[%s=%s]', product.type, product.name)
end
io_string = io_string .. ' '
io_string = io_string .. ' - '

if #clipboard.byproducts > 0 then
for _, byproduct in ipairs(clipboard.byproducts) do
io_string = io_string .. string.format('[%s=%s]', byproduct.type, byproduct.name)
end
io_string = io_string .. ' '
io_string = io_string .. ' - '
end

for _, ingredient in ipairs(clipboard.ingredients) do
Expand All @@ -297,7 +297,6 @@ local function on_created_entity(event)
target_offset = {0, -3.00},
alignment = "center",
use_rich_text = true,
-- only_in_alt_mode = true,
scale = 0.5,
}
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "factoryplanner-is-exportable-to-fake-factorissimo",
"title": "Factory Planner - exportable to fake factorissimo",
"description": "Skips the building stage, just feed items into the magic box.",
"version": "0.0.14",
"version": "0.0.15",
"author": "Quezler",
"factorio_version": "1.1",
"dependencies": [
Expand Down

0 comments on commit ac2ea45

Please sign in to comment.