summaryrefslogtreecommitdiff
path: root/src/boss.cpp
diff options
context:
space:
mode:
authorColin Noga <Tempus@chronometry.ca>2012-03-09 13:54:17 -0600
committerColin Noga <Tempus@chronometry.ca>2012-03-09 13:54:17 -0600
commit6ddd772d6546758a2602a934a6b385757b77b48e (patch)
tree81e01b4361dd5e95caf76e263cead9d408e26c61 /src/boss.cpp
parentd8eecb8815c3dc566f13c536f0a9cae4de752b45 (diff)
downloadkamek-6ddd772d6546758a2602a934a6b385757b77b48e.tar.gz
kamek-6ddd772d6546758a2602a934a6b385757b77b48e.zip
Bosses working once again - now slimmer and prettier than ever
Diffstat (limited to '')
-rw-r--r--src/boss.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boss.cpp b/src/boss.cpp
index 98d1669..cea6d8e 100644
--- a/src/boss.cpp
+++ b/src/boss.cpp
@@ -117,7 +117,7 @@ bool ShrinkBoss(daBoss *actor, Vec *pos, float scale, int timer) {
actor->scale.y -= scale / 80.0;
actor->scale.z -= scale / 80.0;
- actor->pos.y += 2.0;
+ // actor->pos.y += 2.0;
if (actor->timer == 30) {
@@ -128,7 +128,7 @@ bool ShrinkBoss(daBoss *actor, Vec *pos, float scale, int timer) {
}
if (actor->scale.x < 0) { return true; }
- return false;
+ else { return false; }
}