X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_gate.c;fp=world_gate.c;h=b4760b46389d6cbd1299fbe288f85db1874a20be;hb=56af37b4982b027cac13133eadadfc71ce8947bb;hp=765a09987e6f68cd61344e8163a2f641747dfe3c;hpb=53597f45307d8a2120e3a0bbe71797b216e8750b;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_gate.c b/world_gate.c index 765a099..b4760b4 100644 --- a/world_gate.c +++ b/world_gate.c @@ -321,8 +321,8 @@ VG_STATIC void world_link_nonlocal_async( void *payload, u32 size ){ if( other->status != k_world_status_loaded ) continue; vg_info( "Checking world %u for key matches\n", i ); - for( u32 j=0; jent_gate ); j++ ){ - ent_gate *gate2 = mdl_arritm( &other->ent_gate, j ); + for( u32 k=0; kent_gate ); k++ ){ + ent_gate *gate2 = mdl_arritm( &other->ent_gate, k ); if( !(gate2->flags & k_ent_gate_nonlocal) ) continue; if( gate2->flags & k_ent_gate_linked ) continue; @@ -345,11 +345,7 @@ VG_STATIC void world_link_nonlocal_async( void *payload, u32 size ){ v4_copy( gate->q[0], gate2->q[1] ); v4_copy( gate2->q[0], gate->q[1] ); - if( world->meta.info.version >= 102 ){ - gate->flags |= k_ent_gate_flip; - gate2->flags |= k_ent_gate_flip; - } - else { + if( world->meta.info.version < 102 ){ /* LEGACY BEHAVIOUR: v101 * this would flip both the client worlds portal's entrance and * exit. effectively the clients portal would be the opposite @@ -360,6 +356,7 @@ VG_STATIC void world_link_nonlocal_async( void *payload, u32 size ){ q_axis_angle( qflip, (v3f){0.0f,1.0f,0.0f}, VG_PIf ); q_mul( gate->q[0], qflip, gate->q[0] ); q_mul( gate->q[1], qflip, gate->q[1] ); + q_mul( gate2->q[1], qflip, gate2->q[1] ); } gate_transform_update( gate ); @@ -367,8 +364,7 @@ VG_STATIC void world_link_nonlocal_async( void *payload, u32 size ){ goto matched; } - } -matched:; + } matched:; } }