Skip to content

Commit

Permalink
docs: update wiki URLs in code (#413)
Browse files Browse the repository at this point in the history
As noticed by @Qubus0 wiki URLs in the code needed to be changed to use
the GMLWiki
  • Loading branch information
ZackeryRSmith authored Sep 17, 2024
2 parents 861319b + 93d7b36 commit 1bac6f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ ModLoaderLog.info(

## Documentation

The documentation for this project is located in the repository's wiki. Please make sure to update the relevant documentation pages when making changes to the code. If you're not sure what needs to be updated, please ask in your pull request or issue.
*Note that you will mostly edit the [Upcoming Features](https://github.com/GodotModding/godot-mod-loader/wiki/Upcoming-Features) page, where all changes to the dev branch are documented until they become part of the next major update.*
The documentation for this project is located at [GMLWiki](https://github.com/GodotModding/gmlwiki). Please make sure to update the relevant documentation pages when making changes to the code. If you're not sure what needs to be updated, please ask in your pull request or issue.
*Note that you will mostly edit the [Upcoming Features](https://wiki.godotmodding.com/#/misc/upcoming_features) page, where all changes to the dev branch are documented until they become part of the next major update.*

## Communicating over Discord
We use Discord for communication and collaboration. You can join our Discord server at [discord.godotmodding.com](https://discord.godotmodding.com). Please use appropriate channels for your discussions and keep conversations respectful and on-topic.
Expand All @@ -61,4 +61,4 @@ All contributions must be licensed under the same license as the project. By con

## Thank you!

We appreciate your contributions and look forward to working with you.
We appreciate your contributions and look forward to working with you.
2 changes: 1 addition & 1 deletion addons/mod_loader/internal/file.gd
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ static func _get_json_string_as_dict(string: String) -> Dictionary:

# Load the mod ZIP from the provided directory
static func load_zips_in_folder(folder_path: String) -> Dictionary:
var URL_MOD_STRUCTURE_DOCS := "https://github.com/GodotModding/godot-mod-loader/wiki/Mod-Structure"
var URL_MOD_STRUCTURE_DOCS := "https://wiki.godotmodding.com/#/guides/modding/mod_structure"
var zip_data := {}

var mod_dir := Directory.new()
Expand Down
2 changes: 1 addition & 1 deletion addons/mod_loader/resources/mod_manifest.gd
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ func _generate_default_config_from_schema(property: Dictionary, current_prop :=

# Handles deprecation of the single string value in the compatible_mod_loader_version.
func _handle_compatible_mod_loader_version(mod_id: String, godot_details: Dictionary) -> Array:
var link_manifest_docs := "https://github.com/GodotModding/godot-mod-loader/wiki/Mod-Files#manifestjson"
var link_manifest_docs := "https://wiki.godotmodding.com/#/guides/modding/mod_files?id=manifestjson"
var array_value := ModLoaderUtils.get_array_from_dict(godot_details, "compatible_mod_loader_version")

# If there are array values
Expand Down

0 comments on commit 1bac6f6

Please sign in to comment.