Fix Mapster32 bug where pressing "O" on a sprite twice would corrupt your map due to unchecked use of hitscan results.

git-svn-id: https://svn.eduke32.com/eduke32@4901 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2015-01-11 04:55:50 +00:00
parent 64943543a4
commit 2928a9dfa9
1 changed files with 3 additions and 0 deletions

View File

@ -2075,6 +2075,9 @@ void DoSpriteOrnament(int32_t i)
0,
&hit,CLIPMASK1);
if (hit.sect == -1)
return;
sprite[i].x = hit.pos.x;
sprite[i].y = hit.pos.y;
sprite[i].z = hit.pos.z;