Skip to content

Commit

Permalink
Fix merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
hacktic-dev committed Feb 6, 2024
1 parent 27087de commit 89105e3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Source/Actors/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1566,7 +1566,7 @@ private void StClimbingUpdate()

if (dashes > 0 && tDashCooldown <= 0 && Controls.Dash.ConsumePress())
{
stateMachine.State = States.Dashing;
StateMachine.State = States.Dashing;
dashes--;
return;
}
Expand Down
3 changes: 1 addition & 2 deletions Source/Actors/SolidMesh.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ public SolidMesh(SkinnedTemplate model, float scale)
{
faces.Add(new Face()
{
Plane = Plane.CreateFromVertices(vertices[v + n + 0], vertices[v + n + 1], vertices[v + n + 2]),
Indices = [v + n + 0, v + n + 1, v + n + 2]
Plane = Plane.CreateFromVertices(vertices[v + n + 0], vertices[v + n + 1], vertices[v + n + 2])
});
}
}
Expand Down

0 comments on commit 89105e3

Please sign in to comment.