From ee80cd193d22138ea5d0f87d4b8ebe1bbf6e7074 Mon Sep 17 00:00:00 2001 From: "NGnius (Graham)" Date: Thu, 3 Apr 2025 20:26:40 -0400 Subject: [PATCH] Unlock all parts by default because it's better tested and makes it actually playable --- rc_core/src/persist/user/initial_data.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc_core/src/persist/user/initial_data.rs b/rc_core/src/persist/user/initial_data.rs index 3dd8c7a..2be1da6 100644 --- a/rc_core/src/persist/user/initial_data.rs +++ b/rc_core/src/persist/user/initial_data.rs @@ -32,7 +32,7 @@ fn default_user_data() -> super::AccountInfo { password: None, inventory: super::UnlockedParts { unlocked: vec![], - override_: super::inventory::UnlockOverride::Normal, + override_: super::inventory::UnlockOverride::UnlockAll, }, garage: super::SelectedGarage { uuid: (0, 0), @@ -45,7 +45,7 @@ fn default_garage_slots() -> Vec { vec![ crate::persist::GarageSlot { slot: 0, - name: "Reverse-engineer great success! slot_name".to_owned(), + name: "Bay 1".to_owned(), cubes: 1, crf_id: 0, was_rated: false,