diff --git a/addons/mod_loader/mod_data.gd b/addons/mod_loader/mod_data.gd index df1f97f8..58415b84 100644 --- a/addons/mod_loader/mod_data.gd +++ b/addons/mod_loader/mod_data.gd @@ -115,8 +115,3 @@ func get_optional_mod_file_path(optional_file: int) -> String: optional_mod_files.OVERWRITES: return dir_path.plus_file("overwrites.gd") return "" - -#func _to_string() -> String: - # todo if we want it pretty printed - - diff --git a/addons/mod_loader/mod_manifest.gd b/addons/mod_loader/mod_manifest.gd index e3d9bee6..86d6d527 100644 --- a/addons/mod_loader/mod_manifest.gd +++ b/addons/mod_loader/mod_manifest.gd @@ -82,9 +82,6 @@ func _init(manifest: Dictionary) -> void: if not validate_dependencies_and_incompatibilities(mod_id, dependencies, incompatibilities): return - # todo load file named icon.png when loading mods and use here -# image StreamTexture - # Mod ID used in the mod loader # Format: {namespace}-{name} @@ -225,8 +222,3 @@ static func dict_has_fields(dict: Dictionary, required_fields: Array) -> bool: return false return true - - -#func _to_json() -> String: -# return "" -