@@ -13,7 +13,7 @@ var grid_placeholder := Control
13
13
onready var grid = $ "% Grid"
14
14
15
15
16
- func generate_grid (user_profile : ModLoaderUserProfile . Profile ) -> void :
16
+ func generate_grid (user_profile : ModUserProfile ) -> void :
17
17
for mod_id in user_profile .mod_list .keys ():
18
18
_generate_mod_name (mod_id )
19
19
_generate_mod_active_state (mod_id , user_profile )
@@ -40,7 +40,7 @@ func _generate_mod_name(mod_id: String) -> void:
40
40
label_mod_id .set_error_color ()
41
41
42
42
43
- func _generate_mod_active_state (mod_id : String , user_profile : ModLoaderUserProfile . Profile ) -> void :
43
+ func _generate_mod_active_state (mod_id : String , user_profile : ModUserProfile ) -> void :
44
44
var is_active_toggle : IsActiveToggle = is_active_toggle_scene .instance ()
45
45
grid .add_child (is_active_toggle )
46
46
is_active_toggle .mod_id = mod_id
@@ -55,7 +55,7 @@ func _generate_mod_active_state(mod_id: String, user_profile: ModLoaderUserProfi
55
55
is_active_toggle .disabled = true
56
56
57
57
58
- func _generate_mod_current_config (mod_id : String , user_profile : ModLoaderUserProfile . Profile ) -> void :
58
+ func _generate_mod_current_config (mod_id : String , user_profile : ModUserProfile ) -> void :
59
59
var current_config_select : CurrentConfigSelect = current_config_select_scene .instance ()
60
60
grid .add_child (current_config_select )
61
61
current_config_select .mod_id = mod_id
0 commit comments