File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ var compatible_game_version := [] # Array[String]
2323# only used for information
2424var incompatibilities := [] # Array[String]
2525var tags := [] # Array[String]
26+ var config_defaults := [] # Array[String]
2627var description_rich := ""
2728var image : StreamTexture
2829
@@ -74,6 +75,7 @@ func _init(manifest: Dictionary) -> void:
7475 compatible_game_version = _get_array_from_dict (godot_details , "compatible_game_version" )
7576 description_rich = _get_string_from_dict (godot_details , "description_rich" )
7677 tags = _get_array_from_dict (godot_details , "tags" )
78+ config_defaults = _get_array_from_dict (godot_details , "config_defaults" )
7779
7880 # todo load file named icon.png when loading mods and use here
7981# image StreamTexture
You can’t perform that action at this time.
0 commit comments