From 6d498fe17dab48cfd8fc8a4da62a573b799e10ba Mon Sep 17 00:00:00 2001 From: fusion32 Date: Wed, 16 Jul 2025 17:22:39 -0300 Subject: fix most init and parsing bugs + critical bug with dynamic strings With an appropriate query manager, the server now starts up and seems to work but won't properly handle connections until we fix the problem with threads and signals described in `TODO.md`. --- src/query.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/query.cc') diff --git a/src/query.cc b/src/query.cc index 5da269d..5384b79 100644 --- a/src/query.cc +++ b/src/query.cc @@ -846,7 +846,7 @@ int TQueryManagerConnection::reportStatement(uint32 ReporterID, const char *Play } } - this->sendQuad((uint32)NonZeroStatements); + this->sendWord((uint16)NonZeroStatements); for(int i = 0; i < NumberOfStatements; i += 1){ if(StatementIDs[i] != 0){ this->sendQuad(StatementIDs[i]); @@ -1253,7 +1253,7 @@ int TQueryManagerConnection::createPlayerlist(int NumberOfPlayers, const char ** } int TQueryManagerConnection::logKilledCreatures(int NumberOfRaces, const char **Names, - int *KilledPlayers,int *KilledCreatures){ + int *KilledPlayers, int *KilledCreatures){ this->prepareQuery(48); this->sendWord((uint16)NumberOfRaces); -- cgit v1.2.3