Skip to content
Snippets Groups Projects
Commit 2c6e2337 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

Dont exceed limits when calculating V

parent 4dffdea5
No related branches found
No related tags found
No related merge requests found
Pipeline #246 passed with stage
in 58 seconds
......@@ -693,10 +693,10 @@ class Bomb(bs.Actor):
def _handleDropped(self,m):
# anton lolz
V_MULT = (10, 0, 10)
V_MULT = (10, 1, 10)
V_ADD = (0, -1, 0)
self.node.velocity = tuple(
(v * vm) + va for v, vm, va in zip(
max(-20, min((v * vm) + va, 20)) for v, vm, va in zip(
self.node.velocity, V_MULT, V_ADD))
if self.bombType == 'landMine':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment