This commit is contained in:
MascaraSnake 2022-12-30 07:52:19 +01:00
parent 29b9fec85d
commit 0a0da81007

View file

@ -4910,9 +4910,9 @@ static void P_ConvertBinaryLinedefTypes(void)
case 331: // Player skin - continuous case 331: // Player skin - continuous
case 332: // Player skin - each time case 332: // Player skin - each time
case 333: // Player skin - once case 333: // Player skin - once
if (lines[i].special == 303) if (lines[i].special == 333)
lines[i].args[0] = TMT_ONCE; lines[i].args[0] = TMT_ONCE;
else if (lines[i].special == 302) else if (lines[i].special == 332)
lines[i].args[0] = (lines[i].flags & ML_BOUNCY) ? TMT_EACHTIMEENTERANDEXIT : TMT_EACHTIMEENTER; lines[i].args[0] = (lines[i].flags & ML_BOUNCY) ? TMT_EACHTIMEENTERANDEXIT : TMT_EACHTIMEENTER;
else else
lines[i].args[0] = TMT_CONTINUOUS; lines[i].args[0] = TMT_CONTINUOUS;