diff --git a/src/vpx/gamedata.rs b/src/vpx/gamedata.rs index 042e8f7..f61c972 100644 --- a/src/vpx/gamedata.rs +++ b/src/vpx/gamedata.rs @@ -553,7 +553,7 @@ impl GameDataJson { // this data is loaded from a separate file collections_size: 0, name: self.name.clone(), - custom_colors: self.custom_colors.clone(), + custom_colors: self.custom_colors, protection_data: self.protection_data.clone(), code: StringWithEncoding::empty(), locked: self.locked, @@ -714,7 +714,7 @@ impl GameDataJson { tone_mapper: game_data.tone_mapper, bloom_strength: game_data.bloom_strength, name: game_data.name.clone(), - custom_colors: game_data.custom_colors.clone(), + custom_colors: game_data.custom_colors, protection_data: game_data.protection_data.clone(), // code: game_data.code.clone(), locked: game_data.locked,