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

Prevent using bombs

parent 5fa306b4
No related branches found
No related tags found
No related merge requests found
Pipeline #235 failed with stage
in 49 seconds
......@@ -1397,6 +1397,20 @@ class Spaz(bs.Actor):
_BombDiedMessage()))
self._pickUp(bomb.node)
# yeet bomb
mag = 4000
velocityMag = 2000
radius = 0
velocity = [150, 130, 100]
forceDirection = [0, 200, 0]
pos = self.node.position
bomb.node.handleMessage(
"impulse", pos[0], pos[1], pos[2],
velocity[0], velocity[1], velocity[2],
mag, velocityMag, radius, 0,
forceDirection[0], forceDirection[1],
forceDirection[2])
for c in self._droppedBombCallbacks: c(self, bomb)
return bomb
......
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