mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 13:30:33 +02:00
add untracked changes
This commit is contained in:
parent
7bd9e2653c
commit
7834a18bcf
1 changed files with 5 additions and 6 deletions
|
@ -126,7 +126,7 @@ CreateSimulation = function() {
|
|||
}
|
||||
|
||||
this.pause = function() {
|
||||
if(paused) {
|
||||
if (paused) {
|
||||
return;
|
||||
}
|
||||
for (var i = 0; i < planets.length; ++i) {
|
||||
|
@ -144,7 +144,7 @@ CreateSimulation = function() {
|
|||
}
|
||||
|
||||
this.resume = function() {
|
||||
if(!paused) {
|
||||
if (!paused) {
|
||||
return;
|
||||
}
|
||||
for (var i = 0; i < planets.length; ++i) {
|
||||
|
@ -501,4 +501,3 @@ CreateSimulation();
|
|||
|
||||
Script.update.connect(update);
|
||||
Script.scriptEnding.connect(scriptEnding);
|
||||
|
||||
|
|
Loading…
Reference in a new issue