fix: snake only spawn after game start
This commit is contained in:
parent
8353ee74ef
commit
5e08a7b3aa
|
@ -28,7 +28,7 @@ export default class Tutorial extends GameLevel {
|
||||||
super.updateScene(deltaT);
|
super.updateScene(deltaT);
|
||||||
|
|
||||||
//spawn snake()
|
//spawn snake()
|
||||||
if(Math.random() < .0001){
|
if(Math.random() < .0001 && this.gameStarted){
|
||||||
console.log("RANDOM SNAKE!");
|
console.log("RANDOM SNAKE!");
|
||||||
this.addEnemy("Snake", this.player.position.clone().add(new Vec2(0,-320)), SnakeAI, {
|
this.addEnemy("Snake", this.player.position.clone().add(new Vec2(0,-320)), SnakeAI, {
|
||||||
player: this.player,
|
player: this.player,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user