mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-14 17:01:07 +00:00
Fix typo in linedef type 400 conversion
This commit is contained in:
parent
a5959c0248
commit
2e120953ec
2 changed files with 2 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
|
||||
|
|
|
@ -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