- Changed: Line_SetIdentification will ignore extended parameters when
used in maps defined Hexen style in MAPINFO. SVN r1042 (trunk)
This commit is contained in:
parent
e3a6507381
commit
a86774fcdd
5 changed files with 15 additions and 3 deletions
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue