mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-01-19 07:00:52 +00:00
- reject all 0-special lines for activation.
This is to ensure consistency between all callers of this function.
This commit is contained in:
parent
d8db13a539
commit
b43d87c4cd
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ bool P_TestActivateLine (line_t *line, AActor *mo, int side, int activationType,
|
||||||
{
|
{
|
||||||
int lineActivation = line->activation;
|
int lineActivation = line->activation;
|
||||||
|
|
||||||
if (line->flags & ML_FIRSTSIDEONLY && side == 1)
|
if ((line->flags & ML_FIRSTSIDEONLY && side == 1) || line->special == 0)
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue