Skip to content

Commit abf530e

Browse files
fix missing config_defaults
1 parent 02a9643 commit abf530e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

addons/mod_loader/mod_manifest.gd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ var compatible_game_version := [] # Array[String]
2323
# only used for information
2424
var incompatibilities := [] # Array[String]
2525
var tags := [] # Array[String]
26+
var config_defaults := [] # Array[String]
2627
var description_rich := ""
2728
var 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

0 commit comments

Comments
 (0)