mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 17:01:51 +00:00
- removed bogus velocity code for RRRA's empty bike and boat.
This commit is contained in:
parent
9621cd08d2
commit
5f4a0cf208
1 changed files with 0 additions and 4 deletions
|
@ -4106,8 +4106,6 @@ void OffMotorcycle(player_struct *p)
|
|||
if (spawned)
|
||||
{
|
||||
spawned->spr.angle = p->angle.ang;
|
||||
spawned->add_int_xvel( p->angle.ang.Cos() * (1 << 7));
|
||||
spawned->spr.yvel += p->angle.ang.Sin() * (1 << 7);
|
||||
spawned->saved_ammo = p->ammo_amount[MOTORCYCLE_WEAPON];
|
||||
}
|
||||
}
|
||||
|
@ -4171,8 +4169,6 @@ void OffBoat(player_struct *p)
|
|||
if (spawned)
|
||||
{
|
||||
spawned->spr.angle = p->angle.ang;
|
||||
spawned->add_int_xvel( p->angle.ang.Cos() * (1 << 7));
|
||||
spawned->spr.yvel += p->angle.ang.Sin() * (1 << 7);
|
||||
spawned->saved_ammo = p->ammo_amount[BOAT_WEAPON];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue