Adjust mob jumping default to account for higher gravity

This commit is contained in:
jordan4ibanez 2021-04-16 16:39:03 -04:00
parent 57b293de2b
commit cadd53c103
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ mobs.jump = function(self, velocity)
return
end
velocity = velocity or 5
velocity = velocity or 8
self.object:add_velocity(vector_new(0,velocity,0))
end