refactor world rendering code
[carveJwlIkooP6JGAAIwe30JlM.git] / player.c
index 93cfb10d169fa3c9aef8f9224f32ee6bf3548678..74d56f30d08de71817844512a09c822eeb0508cb 100644 (file)
--- a/player.c
+++ b/player.c
@@ -35,7 +35,6 @@ static int localplayer_cmd_respawn( int argc, const char *argv[] ){
 static void player_init(void){
    for( u32 i=0; i<vg_list_size(player_subsystems); i++ ){
       struct player_subsystem_interface *sys = player_subsystems[i];
-
       if( sys->system_register ) sys->system_register();
    }
 
@@ -123,7 +122,7 @@ static void player__pass_gate( u32 id ){
    localplayer.boundary_hash ^= NETMSG_GATE_BOUNDARY_BIT;
    localplayer.boundary_hash &= ~NETMSG_BOUNDARY_MASK;
    localplayer.boundary_hash |= index;
-
+   
    ent_gate *gate = mdl_arritm( &world->ent_gate, mdl_entity_id_id(id) );
    world_routes_fracture( world, gate, localplayer.rb.co, localplayer.rb.v );