mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Remove access to unused effect6 flag in UDMF
This commit is contained in:
parent
5f97047b96
commit
2bef8da42f
2 changed files with 2 additions and 3 deletions
|
@ -58,7 +58,6 @@ linedefflags_udmf
|
||||||
wrapmidtex = "Repeat Midtexture";
|
wrapmidtex = "Repeat Midtexture";
|
||||||
netonly = "Netgame Only";
|
netonly = "Netgame Only";
|
||||||
nonet = "No Netgame";
|
nonet = "No Netgame";
|
||||||
effect6 = "Effect 6";
|
|
||||||
bouncy = "Bouncy Wall";
|
bouncy = "Bouncy Wall";
|
||||||
transfer = "Transfer Line";
|
transfer = "Transfer Line";
|
||||||
}
|
}
|
||||||
|
|
|
@ -1852,8 +1852,8 @@ static void ParseTextmapLinedefParameter(UINT32 i, char *param, char *val)
|
||||||
lines[i].flags |= ML_MIDSOLID;
|
lines[i].flags |= ML_MIDSOLID;
|
||||||
else if (fastcmp(param, "wrapmidtex") && fastcmp("true", val))
|
else if (fastcmp(param, "wrapmidtex") && fastcmp("true", val))
|
||||||
lines[i].flags |= ML_WRAPMIDTEX;
|
lines[i].flags |= ML_WRAPMIDTEX;
|
||||||
else if (fastcmp(param, "effect6") && fastcmp("true", val))
|
/*else if (fastcmp(param, "effect6") && fastcmp("true", val))
|
||||||
lines[i].flags |= ML_EFFECT6;
|
lines[i].flags |= ML_EFFECT6;*/
|
||||||
else if (fastcmp(param, "nonet") && fastcmp("true", val))
|
else if (fastcmp(param, "nonet") && fastcmp("true", val))
|
||||||
lines[i].flags |= ML_NONET;
|
lines[i].flags |= ML_NONET;
|
||||||
else if (fastcmp(param, "netonly") && fastcmp("true", val))
|
else if (fastcmp(param, "netonly") && fastcmp("true", val))
|
||||||
|
|
Loading…
Reference in a new issue