- Changed: Line_SetIdentification will ignore extended parameters when

used in maps defined Hexen style in MAPINFO.


SVN r1042 (trunk)
This commit is contained in:
Christoph Oelckers 2008-06-16 22:38:23 +00:00
commit a86774fcdd
5 changed files with 15 additions and 3 deletions

View file

@ -1559,8 +1559,15 @@ void P_SetLineID (line_t *ld)
switch (ld->special)
{
case Line_SetIdentification:
ld->id = ld->args[0] + 256 * ld->args[4];
ld->flags |= ld->args[1]<<16;
if (!(level.flags & LEVEL_HEXENHACK))
{
ld->id = ld->args[0] + 256 * ld->args[4];
ld->flags |= ld->args[1]<<16;
}
else
{
ld->id = ld->args[0];
}
break;
case TranslucentLine: