Skip to content

Commit

Permalink
Forgot
Browse files Browse the repository at this point in the history
  • Loading branch information
Astralcircle authored Dec 15, 2024
1 parent b39afa6 commit e3670fe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lua/wire/wireshared.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1013,9 +1013,9 @@ function WireLib.clampForce( v )
local x, y, z = v:Unpack()

return Vector(
clamp( x, min_force, max_force ) or 0,
clamp( y, min_force, max_force ) or 0,
clamp( z, min_force, max_force ) or 0
clamp( x, min_force, max_force ),
clamp( y, min_force, max_force ),
clamp( z, min_force, max_force )
)
end

Expand Down

0 comments on commit e3670fe

Please sign in to comment.