Skip to content

Commit

Permalink
No icon size error on startup #997
Browse files Browse the repository at this point in the history
  • Loading branch information
KiwiHawk committed Jul 16, 2024
1 parent 27a6346 commit 91fe1d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions angelsrefining/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ Date: ???
- Fixed when placing an electric offshore waterpump over its ghost, the module request would be forgotten (973)
- Fixed crash when upgrading blueprints (978)
- Fixed crash when removing 'angelspump' mod (test mod, merged into Angel's Refining) (992)
- Fixed crash on startup with error message No icon size defined for icon (997)
Changes:
- Added Ore Sorting Facility 5. Catalyst sorting requires a higher tier ore sorting facility (979)
---------------------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion angelsrefining/prototypes/angels-functions.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1548,7 +1548,7 @@ function angelsmods.functions.modify_barreling_icon()
})
end
if fluid.icons then
item.icons = util.combine_icons(item.icons, fluid.icons, { scale = 16 / icon_size, shift = { 0, 5 } })
item.icons = util.combine_icons(item.icons, fluid.icons, { scale = 16 / icon_size, shift = { 0, 5 } }, icon_size)
end
end
end
Expand Down

0 comments on commit 91fe1d6

Please sign in to comment.