Skip to content
Snippets Groups Projects
Commit ac79adef authored by Paolo Brasolin's avatar Paolo Brasolin
Browse files

fix: #fe remove debug code

parent 1c3fe925
No related branches found
No related tags found
No related merge requests found
......@@ -222,10 +222,10 @@ export default class FightScene extends MainScene {
(expLength + (length - expLength) * difficulty);
if (currentCount < maxCount && currentChars < maxChars) {
await this.spawnFoe(10, 1);
await this.spawnFoe(length, duration);
}
this.spawner = this.time.delayedCall(100, this.spawnFoes.bind(this));
this.spawner = this.time.delayedCall(delay, this.spawnFoes.bind(this));
}
async spawnFoe(length: number, timeout: number) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment