diff options
| author | Ben Beltran <ben@nsovocal.com> | 2014-05-31 12:39:02 -0500 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2014-05-31 12:39:02 -0500 |
| commit | 05e4b948df39b47d33067049cf51fd3be7749031 (patch) | |
| tree | 36a0151b009e29a16e34bfecb31a4a99ba3a5d86 /SuperPolarity/Actors/MainShip.cs | |
| parent | 8bdfcb11a2c1023c684093c0f19f3cc65799e0f8 (diff) | |
Moves some files around!
Diffstat (limited to 'SuperPolarity/Actors/MainShip.cs')
| -rw-r--r-- | SuperPolarity/Actors/MainShip.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/SuperPolarity/Actors/MainShip.cs b/SuperPolarity/Actors/MainShip.cs index bf4f3bb..307bef4 100644 --- a/SuperPolarity/Actors/MainShip.cs +++ b/SuperPolarity/Actors/MainShip.cs @@ -274,11 +274,12 @@ namespace SuperPolarity { particleEngine.Draw(spriteBatch); base.Draw(spriteBatch); + spriteBatch.Draw(BoxTexture, Box, new Color(255, 0, 255, 25)); } public override void Collide(Actor other, Rectangle collision) { - if (other.GetType().IsAssignableFrom(typeof(StandardShip)) && + if (other.GetType().IsAssignableFrom(typeof(StandardShip)) && !Immortal) { Die(); |