Skip to content

Commit

Permalink
https://github.com/pyanodon/pybugreports/issues/359
Browse files Browse the repository at this point in the history
  • Loading branch information
notnotmelon committed Jan 6, 2024
1 parent 616bf04 commit 9e15838
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Date: ???
- buffed caravan & aerial caravan speed by 40% in order to compensate for previous update
- updated chinese translation (翻译:aotix,基于咸鱼拓展而来。)
- added non blocking mode to caravans
- fixed a biofluid crash when used with a bigger stack sizes mod
TURD:
- added T.U.R.D unselect infinite tech to allow the indecisive to revert a single T.U.R.D selection
- added the option to unselect T.U.R.D paths for free once the next 10 hours after an update if you've chosen a path that got changed
Expand Down
2 changes: 1 addition & 1 deletion scripts/biofluid/biofluid.lua
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function Biofluid.update_bioport_animation(bioport_data)
animation_data.id = nil
end
else
local new_animation_name = 'bioport-animation-' .. creature_name .. '-' .. new_stage
local new_animation_name = 'bioport-animation-' .. creature_name .. '-' .. math.min(new_stage, 10)
if animation_data.id then
rendering.set_animation(animation_data.id, new_animation_name)
else
Expand Down

0 comments on commit 9e15838

Please sign in to comment.