mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-14 17:01:07 +00:00
Merge branch 'udmf-plane-linedefs' into udmf-scrollers
This commit is contained in:
commit
7f6933317d
3 changed files with 3 additions and 1 deletions
|
@ -2000,6 +2000,7 @@ linedeftypes
|
|||
title = "Set Tagged Sector's Ceiling Height/Texture";
|
||||
prefix = "(401)";
|
||||
flags8text = "[3] Set delay by backside sector";
|
||||
flags64text = "[6] Keep floor flat";
|
||||
}
|
||||
|
||||
402
|
||||
|
|
|
@ -231,6 +231,7 @@ void T_MoveFloor(floormove_t *movefloor)
|
|||
remove = true;
|
||||
break;
|
||||
default:
|
||||
remove = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3622,7 +3622,7 @@ static void P_ConvertBinaryMap(void)
|
|||
case 401: //Set tagged sector's ceiling height/texture
|
||||
lines[i].args[0] = tag;
|
||||
lines[i].args[1] = lines[i].special - 400;
|
||||
lines[i].args[2] = !!(lines[i].flags & ML_NOCLIMB);
|
||||
lines[i].args[2] = !(lines[i].flags & ML_NOCLIMB);
|
||||
lines[i].special = 400;
|
||||
break;
|
||||
case 403: //Move tagged sector's floor
|
||||
|
|
Loading…
Reference in a new issue