Merge remote-tracking branch 'origin/master'

This commit is contained in:
Max Bradbury 2020-04-18 17:48:42 +01:00
commit 4f8c4e5195
1 changed files with 7 additions and 1 deletions

View File

@ -68,7 +68,13 @@ impl Avatar {
.map(|&frame| Image::from(frame.to_string()))
.collect();
Ok(Avatar { animation_frames, name, room_id, position, colour_id })
Ok(Avatar {
animation_frames,
name,
room_id,
position,
colour_id,
})
}
}