mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Implement FOF types 202 and 223
This commit is contained in:
parent
60e589e92a
commit
fdb46e5d14
2 changed files with 26 additions and 0 deletions
|
@ -1601,6 +1601,28 @@ udmf
|
|||
}
|
||||
}
|
||||
|
||||
202
|
||||
{
|
||||
title = "Fog Block";
|
||||
prefix = "(202);
|
||||
arg0
|
||||
{
|
||||
title = "Target sector tag";
|
||||
type = 13;
|
||||
}
|
||||
}
|
||||
|
||||
223
|
||||
{
|
||||
title = "Intangible, Invisible";
|
||||
prefix = "(223);
|
||||
arg0
|
||||
{
|
||||
title = "Target sector tag";
|
||||
type = 13;
|
||||
}
|
||||
}
|
||||
|
||||
linedefexecmisc
|
||||
{
|
||||
title = "Linedef Executor (misc.)";
|
||||
|
|
|
@ -2927,6 +2927,10 @@ static void P_ConvertBinaryMap(void)
|
|||
lines[i].args[1] = 1;
|
||||
lines[i].special = 200;
|
||||
break;
|
||||
case 202: //FOF: Fog block
|
||||
case 223: //FOF: Intangible, invisible
|
||||
lines[i].args[0] = lines[i].tag;
|
||||
break;
|
||||
case 443: //Call Lua function
|
||||
if (lines[i].text)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue