File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ static func uninstall_script_extension(extension_script_path: String) -> void:
31
31
# Used to reload already present mods and load new ones*
32
32
#
33
33
# Returns: void
34
- func reload_mods () -> void :
34
+ static func reload_mods () -> void :
35
35
36
36
# Currently this is the only thing we do, but it is better to expose
37
37
# this function like this for further changes
@@ -49,7 +49,7 @@ func reload_mods() -> void:
49
49
# handle removing all the changes that were not done through the Mod Loader*
50
50
#
51
51
# Returns: void
52
- func disable_mods () -> void :
52
+ static func disable_mods () -> void :
53
53
54
54
# Currently this is the only thing we do, but it is better to expose
55
55
# this function like this for further changes
@@ -70,8 +70,8 @@ func disable_mods() -> void:
70
70
# - mod_data (ModData): The ModData object representing the mod to be disabled.
71
71
#
72
72
# Returns: void
73
- func disable_mod (mod_data : ModData ) -> void :
73
+ static func disable_mod (mod_data : ModData ) -> void :
74
74
75
75
# Currently this is the only thing we do, but it is better to expose
76
76
# this function like this for further changes
77
- ModLoader ._disable_mod (mod_data )
77
+ ModLoader ._disable_mod (mod_data )
You can’t perform that action at this time.
0 commit comments