Really, really drop emeralds from monitors dead center on the ground

This commit is contained in:
AJ Martinez 2023-05-20 02:53:13 -07:00
parent 3b947ebf85
commit 85bfd5be12

View file

@ -442,13 +442,13 @@ adjust_monitor_drop
{
if (drop->type == MT_EMERALD)
{
drop->momz = 0;
drop->angle = 0;
drop->momx = drop->momy = drop->momz = 0;
}
else
{
P_InstaThrust(drop, drop->angle, 8*mapobjectscale);
drop->momz *= 8;
}
P_InstaThrust(drop, drop->angle, 8*mapobjectscale);
drop->momz *= 8;
K_FlipFromObject(drop, monitor);