- fixed: The line ID arg of Plane_Align was not handled in the wrong place. It was also missing from actionspecials.h and the UDMF spec.

SVN r2138 (trunk)
This commit is contained in:
Christoph Oelckers 2010-01-28 23:46:38 +00:00
commit 3f140c0549
4 changed files with 7 additions and 3 deletions

View file

@ -1702,7 +1702,11 @@ void P_SetLineID (line_t *ld)
case Polyobj_ExplicitLine:
ld->id = ld->args[4];
break;
case Plane_Align:
ld->id = ld->args[2];
break;
case Static_Init:
if (ld->args[1] == Init_SectorLink) ld->id = ld->args[0];
break;