mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Changed P_ConvertBinaryLinedefTypes to use args[1] instead of args[3] for linedef type 442
This commit is contained in:
parent
9e72b78a24
commit
d06098c0aa
1 changed files with 1 additions and 1 deletions
|
@ -5467,7 +5467,7 @@ static void P_ConvertBinaryLinedefTypes(void)
|
||||||
break;
|
break;
|
||||||
case 442: //Change object type state
|
case 442: //Change object type state
|
||||||
lines[i].args[0] = tag;
|
lines[i].args[0] = tag;
|
||||||
lines[i].args[3] = (lines[i].sidenum[1] == 0xffff) ? 1 : 0;
|
lines[i].args[1] = (lines[i].sidenum[1] == 0xffff) ? 1 : 0;
|
||||||
break;
|
break;
|
||||||
case 443: //Call Lua function
|
case 443: //Call Lua function
|
||||||
if (lines[i].stringargs[0] == NULL)
|
if (lines[i].stringargs[0] == NULL)
|
||||||
|
|
Loading…
Reference in a new issue