diff options
| author | aldrikboy <aldrikboy@gmail.com> | 2017-12-14 21:13:39 +0100 |
|---|---|---|
| committer | aldrikboy <aldrikboy@gmail.com> | 2017-12-14 21:13:39 +0100 |
| commit | 98fb0bdcf3fb02f68f07a72cab211debb827e978 (patch) | |
| tree | 494455cafaf238c6623186df821559e1f84fdebf /Penguloon/Levels/Map.cs | |
| parent | ff30178f505c69bc70b0770a3220ebd6d4706c74 (diff) | |
Rotation FIXED!
Diffstat (limited to 'Penguloon/Levels/Map.cs')
| -rw-r--r-- | Penguloon/Levels/Map.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Penguloon/Levels/Map.cs b/Penguloon/Levels/Map.cs index 2ffcea0..0e3dde6 100644 --- a/Penguloon/Levels/Map.cs +++ b/Penguloon/Levels/Map.cs @@ -113,7 +113,7 @@ namespace Penguloon.Levels { var b = new RedBalloon(this); b.Position = pos; b.TargetPosition = target; - Enemies.Add(b); + Enemies.Insert(0, b); } } } |
