Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Date: ???
- Fixed beacons not being useable with YAFC and other planner mods. Resolves https://github.com/pyanodon/pybugreports/issues/1449
- Fixed codex search bar saving the search term when switching pages and closing the UI. Resolves https://github.com/pyanodon/pybugreports/issues/1409
- Fixed firearm magazine not being handcraftable. Resolves https://github.com/pyanodon/pybugreports/issues/1432
- Fixed that the pYAE early game menu simulation had the car crashing into the pipe twice. Resolves https://github.com/pyanodon/pybugreports/issues/1340
---------------------------------------------------------------------------------------------------
Version: 3.0.44
Date: 2025-12-28
Expand Down
8 changes: 4 additions & 4 deletions prototypes/menu-simulations.lua
Original file line number Diff line number Diff line change
Expand Up @@ -574,15 +574,15 @@ if mods["pyalternativeenergy"] then
if tickCount == 60 * 8 then
character.riding_state = { acceleration = defines.riding.acceleration.reversing, direction = defines.riding.direction.straight }
end
if tickCount == 60 * 8.5 then
if tickCount == 60 * 8.7 then
character.riding_state = { acceleration = defines.riding.acceleration.braking, direction = defines.riding.direction.straight }
end
if tickCount == 60 * 9 then
character.riding_state = { acceleration = defines.riding.acceleration.accelerating, direction = defines.riding.direction.left }
end
if tickCount == 60 * 9.25 then
character.riding_state = { acceleration = defines.riding.acceleration.accelerating, direction = defines.riding.direction.right }
end
if tickCount == 60 * 9.2 then
character.riding_state = { acceleration = defines.riding.acceleration.nothing, direction = defines.riding.direction.left }
end
if tickCount == 60 * 9.4 then
character.riding_state = { acceleration = defines.riding.acceleration.accelerating, direction = defines.riding.direction.straight }
end
Expand Down
Loading