Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix documentation links #1

Merged
merged 1 commit into from
Aug 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Biomes is an open source massively-multiplayer, fully destructable game running
{% assign sorted = site.pages | sort:"order" %}
{% for page in sorted %}
{% if page.title and page.url != "/" %}
<li><a href="{{ page.url }}">
<li><a href="{{ page.url | relative_url }}">
{{ page.title }}</a>{% if page.description %}: {{ page.description }}{% endif %}
</li>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion docs/serverOverview.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ order: 20

Biomes server functions are divided across multiple microservices, to be able to scale efficiently according to demand.

![Server Architecture](images/biomes-server-architecture.png)
![Server Architecture](assets/images/biomes-server-architecture.png)

- When a player loads the game, they load a client from the `web` server.
- The client then loads assets from the `asset` server, and establishes a connection with the `sync` server to fetch ECS data local to their player's position.
Expand Down