Skip to content

Commit

Permalink
Merge pull request #232 from pyanodon/Frozen
Browse files Browse the repository at this point in the history
Frozen latest changes
  • Loading branch information
kingarthur91 authored Feb 9, 2024
2 parents 3f7b5c2 + 6e1d331 commit f65774a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 2 deletions.
10 changes: 10 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
---------------------------------------------------------------------------------------------------
Version: 2.1.22
Date: ???
Fixes:
- Added a migration to clean any remaining bugged bioport graphics
---------------------------------------------------------------------------------------------------
Version: 2.1.21
Date: 2024-2-2
Fixes:
- Fixed ulric man light cone starting from the wrong location. (https://github.com/pyanodon/pybugreports/issues/385)
---------------------------------------------------------------------------------------------------
Version: 2.1.20
Date: 2024-2-2
Fixes:
Expand Down
2 changes: 1 addition & 1 deletion info.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pyalienlife",
"version": "2.1.20",
"version": "2.1.21",
"factorio_version": "1.1",
"title": "Pyanodons AlienLife",
"author": "Pyanodon, Nexela, Kingarthur, notnotmelon, Mootykins, ShadowGlass, Archezekiel, Quintuple",
Expand Down
8 changes: 8 additions & 0 deletions migrations/2.1.22.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
for _, surface in pairs(game.surfaces) do
for _, arm in pairs(surface.find_entities_filtered{name = 'bioport-floor-animation'}) do
local port = surface.find_entity('bioport', arm.position)
if not (port and port.position.x == arm.position.x and port.position.y == arm.position.y) then
arm.destroy()
end
end
end
2 changes: 1 addition & 1 deletion prototypes/creatures/ulric-man.lua
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ data:extend(
width = 200,
height = 200
},
shift = {0, -11},
shift = {0, -11*1.5-4},
size = 3,
intensity = 0.8,
color = {r = 1.0, g = 1.0, b = 1.0}
Expand Down

0 comments on commit f65774a

Please sign in to comment.