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

Throw player even farther.

parent 54f2aa56
No related branches found
No related tags found
No related merge requests found
Pipeline #243 passed with stage
in 56 seconds
......@@ -1744,6 +1744,19 @@ class PlayerSpaz(Spaz):
try: pickedUpBy = msg.node.sourcePlayer
except Exception: pickedUpBy = None
if pickedUpBy is not None and pickedUpBy.exists():
# Yeet
mag = 2500
velocityMag = 1500
radius = 0
velocity = [10, 20, 10]
forceDirection = [20, 200, 100]
pos = self.node.position
self.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])
self.lastPlayerAttackedBy = pickedUpBy
self.lastAttackedTime = bs.getGameTime()
self.lastAttackedType = ('pickedUp', 'default')
......
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