mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-22 03:41:45 +00:00
Fix typo in laser FOF conversion
This commit is contained in:
parent
f714966c83
commit
7609f300ba
1 changed files with 2 additions and 2 deletions
|
@ -3557,10 +3557,10 @@ static void P_ConvertBinaryMap(void)
|
|||
|
||||
//Flags
|
||||
if (lines[i].flags & ML_EFFECT1)
|
||||
lines[i].args[2] = TMFL_NOBOSSES;
|
||||
lines[i].args[2] |= TMFL_NOBOSSES;
|
||||
//Replicate old hack: Translucent FOFs set to full opacity cut cyan pixels
|
||||
if (lines[i].flags & ML_EFFECT6 || lines[i].args[1] == 256)
|
||||
lines[i].args[2] = TMFL_SPLAT;
|
||||
lines[i].args[2] |= TMFL_SPLAT;
|
||||
|
||||
break;
|
||||
case 259: //Custom FOF
|
||||
|
|
Loading…
Reference in a new issue