Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
orion3dgames committed Jun 2, 2024
1 parent a7fc826 commit a013e19
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
Binary file modified public/models/environment/lh_town.glb
Binary file not shown.
Binary file modified public/models/navmesh/lh_town.glb
Binary file not shown.
2 changes: 1 addition & 1 deletion src/client/Controllers/GameController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export class GameController {
}
}

async initializeAssetController(shadow) {
async initializeAssetController(shadow = null) {
this._loadedAssets = [];
this._assetsCtrl = new AssetsController(this, shadow);
}
Expand Down
2 changes: 1 addition & 1 deletion src/shared/Config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Config {
// server settings
port = 3000;
maxClients = 20; // set maximum clients per room
updateRate = 200; // Set frequency the patched state should be sent to all clients, in milliseconds
updateRate = 100; // Set frequency the patched state should be sent to all clients, in milliseconds
databaseUpdateRate = 10000; // the frequency at which server save data to the database, in milliseconds
logLevel = "info";

Expand Down

0 comments on commit a013e19

Please sign in to comment.