Make quick grenades faster, but not able to bounce.

This commit is contained in:
Mari the Deer 2021-03-16 14:43:25 +01:00
commit b0b4d6ed67
6 changed files with 8 additions and 7 deletions

View file

@ -259,7 +259,8 @@ Class SWWMGesture : SWWMWeapon
p.target = self;
p.angle = atan2(dir.y,dir.x);
p.pitch = asin(-dir.z);
p.vel = dir*p.speed;
p.vel = dir*p.speed*1.5;
p.ClearBounce();
if ( p.waterlevel <= 0 ) p.vel.z += 5.;
p.vel += vel*.5;
}