Skip to content

Commit 45864b6

Browse files
authored
Merge pull request #283 from timothywashburn/fix/typo
fix: typo
2 parents 529ed9d + 99234e7 commit 45864b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

content/docs/en/guides/ecs/hytale-ecs-theory.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The `Store` class is the core of Hytale's ECS system, it's responsible for stori
1515
## EntityStore
1616

1717
When looking through Hytale's server code you will find that most of the time `Store` will be of type `EntityStore`. This name can be misleading as it might suggest that it's a `Store` for entities.
18-
But didn't we just say that the base `Store` already stores entities? The `EntityStore` class implements `WorldProvider` meaning that `EntityStore` is responsible for accessign a specific Hytale `World`. It maintains internal maps `entitiesByUuid` and `networkIdToRef`, allowing you to find a specific entity by its persistent ID or its networking ID.
18+
But didn't we just say that the base `Store` already stores entities? The `EntityStore` class implements `WorldProvider` meaning that `EntityStore` is responsible for accessing a specific Hytale `World`. It maintains internal maps `entitiesByUuid` and `networkIdToRef`, allowing you to find a specific entity by its persistent ID or its networking ID.
1919

2020
Every Entity has a `UUIDComponent` as well as a `NetworkId` which are used by the `EntityStore` to lookup entities inside of the `Store`.
2121

0 commit comments

Comments
 (0)