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

tweak superthrowbombs

parent e459ed24
No related branches found
No related tags found
No related merge requests found
Pipeline #244 passed with stage
in 57 seconds
......@@ -692,9 +692,9 @@ class Bomb(bs.Actor):
self.handleMessage(ExplodeMessage())
def _handleDropped(self,m):
# throw bombs really far
V_MULT = (50, 10, 50)
V_ADD = (0, 10, 0)
# anton lolz
V_MULT = (10, 0, 10)
V_ADD = (0, -1, 0)
self.node.velocity = tuple(
(v * vm) + va for v, vm, va in zip(
self.node.velocity, V_MULT, V_ADD))
......
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