Cleanup & bullet bugfixes

This commit is contained in:
Anuken
2021-08-04 19:02:36 -04:00
parent dd738a0108
commit aa80f06f7b
2 changed files with 2 additions and 4 deletions

View File

@@ -81,7 +81,7 @@ abstract class BulletComp implements Timedc, Damagec, Hitboxc, Teamc, Posc, Draw
}
public boolean hasCollided(int id){
return collided.size != 0 && !collided.contains(id);
return collided.size != 0 && collided.contains(id);
}
@Replace