X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_load.c;h=70ca783137dcc48751ec4851696562658c130199;hb=f2e2b3c37719f839bc130625ee0fcf4ef3179750;hp=e17483f5658ae994df5b5c457b34e01e323d2ca3;hpb=074fa69f479724f9800849430bad5caf730b01ef;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_load.c b/world_load.c index e17483f..70ca783 100644 --- a/world_load.c +++ b/world_load.c @@ -9,6 +9,7 @@ #include "save.h" #include "vg/vg_msg.h" #include "network.h" +#include "player_remote.h" /* * load the .mdl file located in path as a world instance @@ -108,10 +109,8 @@ struct world_load_complete_data{ static void skaterift_world_load_done( void *payload, u32 size ){ struct world_load_complete_data *data = payload; - vg_msg sav = {0}; - sav.buf = data->save.buf; - sav.len = data->save.len; - sav.max = data->save.len; + vg_msg sav; + vg_msg_init( &sav, data->save.buf, data->save.len ); for( u32 i=0; iinstance_count; i++ ){ world_instance *world = &world_static.instances[ data->instance_start+i ]; @@ -293,6 +292,7 @@ static void skaterift_change_world_start( addon_reg *reg ){ world_static.addon_client = reg; network_send_item( k_netmsg_playeritem_world1 ); + relink_all_remote_player_worlds(); } }