Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sirskunkalot committed Nov 9, 2021
1 parent bed092f commit e2b1867
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion JotunnLib/Documentation/tutorials/zones.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Zones
The world of Valheim is split up into **Zones**, each 64 by 64 meters, controlled by the **ZoneSystem**. Each **Zone** can potentially have a single **Location** instance, and many **Vegetation** instances.
The world of Valheim is split up into *Zones*, each 64 by 64 meters, controlled by the *ZoneSystem*. Each *Zone* can potentially have a single *Location* instance, and many *Vegetation* instances.

## Locations

Expand Down
6 changes: 3 additions & 3 deletions JotunnLib/Utils/NetworkCompatibilityAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ public enum CompatibilityLevel
/// </summary>
EveryoneMustHaveMod = 2,
/// <summary>
/// If mod is installed on the server, every client has to have it. VersionStrictness does not apply.
/// If mod is installed on the server, every client has to have it. VersionStrictness does apply when both sides have it.
/// </summary>
ClientMustHaveMod = 3,
/// <summary>
/// If mod is installed on the client, the server has to have it. VersionStrictness does not apply.
/// If mod is installed on the client, the server has to have it. VersionStrictness does apply when both sides have it.
/// </summary>
ServerMustHaveMod = 4,
/// <summary>
Expand All @@ -43,7 +43,7 @@ public enum CompatibilityLevel

/// <summary>
/// Enum used for telling whether or not the same mod version should be used by both the server and the clients.
/// This enum is only useful if CompatibilityLevel.EveryoneMustHaveMod or OnlySyncWhenInstalled was chosen.
/// This enum is only useful with certain CompatibilityLevel values.
/// </summary>
public enum VersionStrictness : int
{
Expand Down

0 comments on commit e2b1867

Please sign in to comment.