mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-23 07:40:14 +00:00
Fix missing closing brace in update() function
The if (state == WorldState::IN_WORLD) block was missing its closing brace. This was introduced during the large SP removal when methods were deleted with sed. Now: 450 open, 450 close (balanced)
This commit is contained in:
parent
180b78d106
commit
2e81167b8e
1 changed files with 1 additions and 0 deletions
|
|
@ -177,6 +177,7 @@ void GameHandler::update(float deltaTime) {
|
|||
for (auto& [guid, entity] : entityManager.getEntities()) {
|
||||
entity->updateMovement(deltaTime);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void GameHandler::handlePacket(network::Packet& packet) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue