- fixed: Heretic's timebombs were spawned at the wrong place.

This commit is contained in:
Christoph Oelckers 2016-02-06 08:52:37 +01:00
parent 34216ddd8e
commit 0ab3051f75

View file

@ -72,7 +72,7 @@ bool AArtiTimeBomb::Use (bool pickup)
{
angle_t angle = Owner->angle >> ANGLETOFINESHIFT;
AActor *mo = Spawn("ActivatedTimeBomb",
Vec3Angle(24*FRACUNIT, Owner->angle, - Owner->floorclip), ALLOW_REPLACE);
Owner->Vec3Angle(24*FRACUNIT, Owner->angle, - Owner->floorclip), ALLOW_REPLACE);
mo->target = Owner;
return true;
}