Skip to content

Commit

Permalink
Fix client build
Browse files Browse the repository at this point in the history
  • Loading branch information
vadzz-dev committed Dec 17, 2024
1 parent 413567e commit f14a69e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions shared/V8ResourceImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -634,8 +634,11 @@ void V8ResourceImpl::PrintHealth()
Log::Info << "Resource health: " << resource->GetName() << Log::Endl;
Log::Info << " - Entities: " << entities.size() << Log::Endl;
Log::Info << " - Timers: " << timers.size() << Log::Endl;
Log::Info << " - Timer benchmarks: " << benchmarkTimers.size() << Log::Endl;
Log::Info << " - Vehicle passengers: " << vehiclePassengers.size() << Log::Endl;
Log::Info << " - Timer benchmarks: " << benchmarkTimers.size() << Log::Endl;

#ifdef ALT_SERVER_API
Log::Info << " - Vehicle passengers: " << vehiclePassengers.size() << Log::Endl;
#endif // ALT_SERVER_API
}

// Internal script globals
Expand Down

0 comments on commit f14a69e

Please sign in to comment.