diff options
Diffstat (limited to 'scripts/character')
-rw-r--r-- | scripts/character/spring.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/character/spring.lua b/scripts/character/spring.lua index ed3e878..cbbba4f 100644 --- a/scripts/character/spring.lua +++ b/scripts/character/spring.lua @@ -24,6 +24,6 @@ return function(db, self, other, point) local tbl = ode.ContactGeomTable(point) local x = tbl.depth - 3.8 local spring = db:getComponent(self, "spring") - spring.F = math.abs(200 * x) + spring.F = math.abs(500 * x) print("depth", x) end |