repo: janusweb
action: commit
revision: 
path_from: 
revision_from: bc2d55d58e0014936989340b6c601fa98bdcdf37:
path_to: 
revision_to: 
git.thebackupbox.net
janusweb
git clone git://git.thebackupbox.net/janusweb
commit bc2d55d58e0014936989340b6c601fa98bdcdf37
Author: James Baicoianu 
Date:   Mon Jul 25 05:28:21 2016 -0700

    Disable crosshair, enable stats, move world system to last in sequence

diff --git a/scripts/client.js b/scripts/client.js
index 0606b07272d3c958c078d456b78ce39f66054023..
index ..2b33a5cb87b27fd2deb7f31416a28a96dad0566a 100644
--- a/scripts/client.js
+++ b/scripts/client.js
@@ -44,18 +44,19 @@ elation.require(['engine.engine', 'engine.assets', 'engine.things.light_ambient'
     this.initEngine = function() {
       var hashargs = elation.url();

-      this.enginecfg.stats = false;
+      this.enginecfg.stats = true;

       this.enginecfg.systems = [];
       this.enginecfg.systems.push("controls");
       this.enginecfg.systems.push("physics");
-      this.enginecfg.systems.push("world");
       this.enginecfg.systems.push("ai");
+      this.enginecfg.systems.push("world");
       if (hashargs.admin == 1) {
         this.enginecfg.systems.push("admin");
       } 
       this.enginecfg.systems.push("render");
       this.enginecfg.systems.push("sound");
+      this.enginecfg.crosshair = false;
     }
     this.initWorld = function() {
       var things = this.world.load({
@@ -75,7 +76,7 @@ elation.require(['engine.engine', 'engine.assets', 'engine.things.light_ambient'
               position: [0,0,0],
               mass: 10,
               movespeed: 5000,
-              collidable: false
+              collidable: true
             }
           },
         }

-----END OF PAGE-----