We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Desktop Tower Defense does not conclude after surviving all levels.
After beating the game, a pop up appears with score submission, or a message that the game has concluded, and return to main menu.
Online demo
Windows 10
Chrome
The version of the game is hosted on https://kbhgames.com/game/desktop-tower-defense
The text was updated successfully, but these errors were encountered:
This is another case of #5492, when a 'creep' is defeated it's clip is removed, these are then filtered from the creep list like so:
function FilterCreeps() { var i = 0; while(i < this.creeps.length) { if("" + this.creeps[i] == "") { this.creeps.splice(i, 1); } else { i++; } } }
In Ruffle the strings won't get changed when the clip is removed so creeps.length == 429, but Tick() does the following check:
creeps.length == 429
Tick()
if(this.finished && this.creeps.length == 0) { this.ShowFinish(); }
Which will never get hit in Ruffle, so the pop up won't show.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Desktop Tower Defense does not conclude after surviving all levels.
Expected behavior
After beating the game, a pop up appears with score submission, or a message that the game has concluded, and return to main menu.
Affected platform
Online demo
Operating system
Windows 10
Browser
Chrome
Additional information
The version of the game is hosted on https://kbhgames.com/game/desktop-tower-defense
The text was updated successfully, but these errors were encountered: