-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove type hint for for...in variable * Remove another typed for...in variable * Fix production_no_workshop.tres format * Fix production_workshop.tres format * Use custom function instead of type_string * keep type in `load_mods()` * refactor: ♻️ `fix_method_super()` use `erase` `insert` instead of `sub` _ModLoaderModHookPreProcessor.fix_method_super() erased everything after the function body, leaving only the first function in a script. * refactor: ♻️ remove inline type in for * style: 🔥 remove white space * refactor: ♻️ engine version check * fix: ✏️ fix typo * refactor: ♻️ engine_version as int * refactor: ♻️ use version hex and link to PR * fix: 🐛 fixed type * refactor: ♻️ use RegEx.sub() and add back text * Update addons/mod_loader/internal/mod_hook_preprocessor.gd * Update addons/mod_loader/internal/mod_hook_preprocessor.gd Co-authored-by: steen <[email protected]> --------- Co-authored-by: Alexejhero <[email protected]> Co-authored-by: steen <[email protected]>
- Loading branch information
1 parent
c11cc6a
commit c29ac0d
Showing
3 changed files
with
124 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
addons/mod_loader/options/profiles/production_no_workshop.tres
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[gd_resource type="Resource" script_class="ModLoaderOptionsProfile" load_steps=2 format=4 uid="uid://bodsw0jyh6rn5"] | ||
[gd_resource type="Resource" script_class="ModLoaderOptionsProfile" load_steps=2 format=3 uid="uid://bodsw0jyh6rn5"] | ||
|
||
[ext_resource type="Script" path="res://addons/mod_loader/resources/options_profile.gd" id="1"] | ||
|
||
[resource] | ||
script = ExtResource("1") | ||
enable_mods = true | ||
locked_mods = Array[String]([]) | ||
locked_mods = [] | ||
log_level = 2 | ||
disabled_mods = Array[String]([]) | ||
disabled_mods = [] | ||
allow_modloader_autoloads_anywhere = false | ||
steam_id = 0 | ||
override_path_to_mods = "" | ||
override_path_to_configs = "" | ||
override_path_to_workshop = "" | ||
ignore_deprecated_errors = false | ||
ignored_mod_names_in_log = Array[String]([]) | ||
ignored_mod_names_in_log = [] | ||
load_from_steam_workshop = false | ||
load_from_local = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[gd_resource type="Resource" script_class="ModLoaderOptionsProfile" load_steps=2 format=4 uid="uid://cg0vv5k4o71rv"] | ||
[gd_resource type="Resource" script_class="ModLoaderOptionsProfile" load_steps=2 format=3 uid="uid://cg0vv5k4o71rv"] | ||
|
||
[ext_resource type="Script" path="res://addons/mod_loader/resources/options_profile.gd" id="1"] | ||
|
||
[resource] | ||
script = ExtResource("1") | ||
enable_mods = true | ||
locked_mods = Array[String]([]) | ||
locked_mods = [] | ||
log_level = 2 | ||
disabled_mods = Array[String]([]) | ||
disabled_mods = [] | ||
allow_modloader_autoloads_anywhere = false | ||
steam_id = 0 | ||
override_path_to_mods = "" | ||
override_path_to_configs = "" | ||
override_path_to_workshop = "" | ||
ignore_deprecated_errors = false | ||
ignored_mod_names_in_log = Array[String]([]) | ||
ignored_mod_names_in_log = [] | ||
load_from_steam_workshop = true | ||
load_from_local = true |