]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/triggers/trigger/gamestart.qc
take3: format 903 files
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / triggers / trigger / gamestart.qc
index 72d76d183326437bdd4f5bcd7a38393d0a578268..9cf149bf435da51e85431cef323579ff3cf6e01d 100644 (file)
@@ -16,13 +16,12 @@ spawnfunc(trigger_gamestart)
        this.use = gamestart_use;
        this.reset2 = spawnfunc_trigger_gamestart;
 
-       if(this.wait)
-       {
+       if (this.wait) {
                setthink(this, adaptor_think2use);
                this.nextthink = game_starttime + this.wait;
-       }
-       else
+       } else {
                InitializeEntity(this, gamestart_use_this, INITPRIO_FINDTARGET);
+       }
 }
 
 #endif