Skip to content

Commit

Permalink
Merge pull request #1 from ill-inc/b/indexlink
Browse files Browse the repository at this point in the history
fix documentation links
  • Loading branch information
mochimisu authored Aug 13, 2023
2 parents 78af6a2 + 3304827 commit 06e1f55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 06e1f55

Please sign in to comment.