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

Merge branch 'feature-superthrowbombs'

parents c4927729 168bbe38
Branches master
No related tags found
No related merge requests found
......@@ -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