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

fix: fe limit spawn rate

parent 5c4f2052
No related branches found
No related tags found
No related merge requests found
...@@ -315,7 +315,7 @@ function spawn(scene: any) { ...@@ -315,7 +315,7 @@ function spawn(scene: any) {
scene.time.now; scene.time.now;
const delay = const delay =
(8 * 1000 * (60 * 1000 - scene.time.now)) / 60 / 1000 + 2 * 1000; (8 * 1000 * (60 * 1000 - scene.time.now)) / 60 / 1000 + 2 * 1000;
setTimeout(() => spawn(scene), delay); setTimeout(() => spawn(scene), Math.max(delay, 2000));
} }
function dispatchEnemy(scene: any) { function dispatchEnemy(scene: any) {
......
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