1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 05:58:30 +02:00

Remove two '//Active' comments

I guess these were here earlier when there were 'active' conditionals,
but then I removed those, so now they look weird next to the 'i != j'
conditionals, so I'm removing them.
This commit is contained in:
Misa 2020-04-03 14:50:08 -07:00 committed by Ethan Lee
parent 2f3eeccdf0
commit 1b78db9079

View File

@ -4556,7 +4556,7 @@ void entityclass::customwarplinecheck(int i) {
//We test entity to entity
for (int j = 0; j < (int) entities.size(); j++) {
if (i != j) {//Active
if (i != j) {
if (entities[i].rule == 0 && entities[j].rule == 5 //Player vs vertical line!
&& (entities[j].type == 51 || entities[j].type == 52)
&& entitywarpvlinecollide(i, j)) {
@ -4579,7 +4579,7 @@ void entityclass::entitycollisioncheck()
//We test entity to entity
for (size_t j = 0; j < entities.size(); j++)
{
if (i!=j) //Active
if (i!=j)
{
if (entities[i].rule == 0 && entities[j].rule == 1 && entities[j].harmful)
{