From 8bdfcb11a2c1023c684093c0f19f3cc65799e0f8 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sat, 31 May 2014 11:24:29 -0500 Subject: Move some files around, relink --- SuperPolarity/ActorManager.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'SuperPolarity/ActorManager.cs') diff --git a/SuperPolarity/ActorManager.cs b/SuperPolarity/ActorManager.cs index f5587b9..56db26c 100644 --- a/SuperPolarity/ActorManager.cs +++ b/SuperPolarity/ActorManager.cs @@ -68,7 +68,9 @@ namespace SuperPolarity { Actor other = Actors[j]; - CheckCollision(actor, other); + if (actor.Collides && other.Collides) { + CheckCollision(actor, other); + } if (actor.GetType().IsSubclassOf(typeof(Ship)) && other.GetType().IsSubclassOf(typeof(Ship))) { -- cgit