Fix randomInt
This commit is contained in:
@ -52,7 +52,7 @@ let eggX = 2
|
||||
let eggY = 0
|
||||
if (eggY > 4) {
|
||||
eggY = -1
|
||||
eggX = Math.randomInt(5)
|
||||
eggX = Math.randomRange(0, 5)
|
||||
}
|
||||
```
|
||||
|
||||
|
Reference in New Issue
Block a user