From 6d5ade4394e52e7abdbb7a4fcb86e72af9cf58cb Mon Sep 17 00:00:00 2001 From: Chris Bloomfield <43499897+ithinkandicode@users.noreply.github.com> Date: Sun, 26 Feb 2023 19:09:35 +0000 Subject: [PATCH] Cleanup: Remove todo comments --- addons/mod_loader/mod_data.gd | 5 ----- addons/mod_loader/mod_manifest.gd | 8 -------- 2 files changed, 13 deletions(-) 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 "" -