Skip to content

Commit

Permalink
Fix Ythotha being able to move backwards (#6466)
Browse files Browse the repository at this point in the history
  • Loading branch information
lL1l1 authored Nov 7, 2024
1 parent 1491ad6 commit 5a55468
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions changelog/snippets/balance.6466.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- (#6466) Fix Ythotha being able to walk backwards.
- `MaxSpeedReverse`: 2.5 -> 0
2 changes: 1 addition & 1 deletion engine/Core/Blueprints/UnitBlueprint.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@
---@field MaxGroundVariation number
--- maximum speed for the unit
---@field MaxSpeed number
--- maximum speed for the unit in reverse
--- maximum speed for the unit in reverse. Defaults to the same value as MaxSpeed
---@field MaxSpeedReverse number
--- maximum steer force magnitude that can be applied to acceleration
---@field MaxSteerForce number
Expand Down
1 change: 1 addition & 0 deletions units/XSL0401/XSL0401_unit.bp
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ UnitBlueprint{
MaxAcceleration = 2.5,
MaxBrake = 2.5,
MaxSpeed = 2.5,
MaxSpeedReverse = 0,
MaxSteerForce = 10,
MeshExtentsX = 2.75,
MeshExtentsY = 6.75,
Expand Down

0 comments on commit 5a55468

Please sign in to comment.