From ce03feb11abe4ee5bb65d057f968ecb25718dbc3 Mon Sep 17 00:00:00 2001 From: EmosewaMC <39972741+EmosewaMC@users.noreply.github.com> Date: Sat, 14 Jan 2023 18:18:25 -0800 Subject: [PATCH] f --- build.sh | 2 +- dGame/Entity.cpp | 2 +- dMasterServer/MasterServer.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index a736a4ee..bdde6240 100755 --- a/build.sh +++ b/build.sh @@ -9,5 +9,5 @@ cd build cmake .. # To build utilizing multiple cores, append `-j` and the amount of cores to utilize, for example `cmake --build . --config Release -j8' -cmake --build . --config Release +cmake --build . --config Release -j4 diff --git a/dGame/Entity.cpp b/dGame/Entity.cpp index c0f71324..9a781626 100644 --- a/dGame/Entity.cpp +++ b/dGame/Entity.cpp @@ -375,7 +375,7 @@ void Entity::Initialize() { comp->SetIsSmashable(destCompData[0].isSmashable); comp->SetLootMatrixID(destCompData[0].LootMatrixIndex); - + Game::logger->Log("Entity", "%i %i %f", destCompData[0].life, destCompData[0].imagination, destCompData[0].armor); // Now get currency information uint32_t npcMinLevel = destCompData[0].level; uint32_t currencyIndex = destCompData[0].CurrencyIndex; diff --git a/dMasterServer/MasterServer.cpp b/dMasterServer/MasterServer.cpp index 82645797..2643214a 100644 --- a/dMasterServer/MasterServer.cpp +++ b/dMasterServer/MasterServer.cpp @@ -297,7 +297,7 @@ int main(int argc, char** argv) { StartChatServer(); Game::im->GetInstance(0, false, 0); - Game::im->GetInstance(1000, false, 0); + Game::im->GetInstance(1800, false, 0); StartAuthServer(); }