- fixed incorrect trigger types in compatibility setter.

These were caused by some bogus comment in the original compatibility.txt which erroneously added a "SPAC_PCross" remark to a line which actually set "SPAC_Cross".
This commit is contained in:
Christoph Oelckers 2018-09-03 23:06:32 +02:00
parent f007473a9f
commit 7cbc98e1d0
1 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ class LevelCompatibility play
AddSectorTag(35, 15);
for(int i=605; i<609;i++)
{
SetLineActivation(i, SPAC_PCross);
SetLineActivation(i, SPAC_Cross);
SetLineSpecial(i, Door_Open, 15, 64);
}
break;
@ -187,7 +187,7 @@ class LevelCompatibility play
ClearSectorTags(197);
AddSectorTag(197, 8);
SetLineSpecial(1279, Floor_LowerToLowest, 8, 32);
SetLineActivation(1240, SPAC_PCross);
SetLineActivation(1240, SPAC_Cross);
SetLineSpecial(1240, Floor_LowerToLowest, 38, 32);
break;
}