diff options
author | Colin Noga <Tempus@chronometry.ca> | 2012-03-09 13:54:17 -0600 |
---|---|---|
committer | Colin Noga <Tempus@chronometry.ca> | 2012-03-09 13:54:17 -0600 |
commit | 6ddd772d6546758a2602a934a6b385757b77b48e (patch) | |
tree | 81e01b4361dd5e95caf76e263cead9d408e26c61 /src/bossTopman.cpp | |
parent | d8eecb8815c3dc566f13c536f0a9cae4de752b45 (diff) | |
download | kamek-6ddd772d6546758a2602a934a6b385757b77b48e.tar.gz kamek-6ddd772d6546758a2602a934a6b385757b77b48e.zip |
Bosses working once again - now slimmer and prettier than ever
Diffstat (limited to 'src/bossTopman.cpp')
-rw-r--r-- | src/bossTopman.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bossTopman.cpp b/src/bossTopman.cpp index e17c2b1..b538131 100644 --- a/src/bossTopman.cpp +++ b/src/bossTopman.cpp @@ -550,7 +550,11 @@ void daDreidel::updateModelMatrices() { bool ret; ret = ShrinkBoss(this, &this->pos, 0.5, this->timer); - if (ret) { BossExplode(this, &this->pos); } + if (ret == true) { + BossExplode(this, &this->pos); + this->dying = 1; + this->timer = 0; + } else { PlaySound(this, SE_EMY_BUBBLE_EXTINCT); } this->timer += 1; |