mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 09:08:47 +02:00
maze should delete stray balls
This commit is contained in:
parent
16bebc437b
commit
83713898cc
1 changed files with 3 additions and 0 deletions
|
@ -96,6 +96,9 @@
|
||||||
if (this.ballLocked === true) {
|
if (this.ballLocked === true) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if(this.ball!==null){
|
||||||
|
Entities.deleteEntity(this.ball);
|
||||||
|
}
|
||||||
|
|
||||||
var properties = {
|
var properties = {
|
||||||
name: 'Hifi Tilt Maze Ball',
|
name: 'Hifi Tilt Maze Ball',
|
||||||
|
|
Loading…
Reference in a new issue