Skip to content

Commit

Permalink
Merge Disable state bag strict mode (mr-662)
Browse files Browse the repository at this point in the history
dde3fa8 - fix(tests): disable state bag strict mode
  • Loading branch information
prikolium-cfx committed Feb 4, 2025
2 parents 9ce2bbc + dde3fa8 commit 7bcb23d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions code/tests/server/ServerGameStatePublicInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,11 @@ class ServerGameStatePublicImpl : public fx::ServerGameStatePublic
{
gameStateAckLastCall.emplace(client, buffer.GetFrameIndex(), std::vector<net::packet::ClientGameStateNAck::IgnoreListEntry>{ buffer.GetIgnoreList().begin(), buffer.GetIgnoreList().end() }, std::vector<uint16_t>{ buffer.GetRecreateList().begin(), buffer.GetRecreateList().end() });
}

bool GetStateBagStrictMode() const override
{
return false;
}
};

fx::ServerGameStatePublic* fx::ServerGameStatePublicInstance::Create()
Expand Down

2 comments on commit 7bcb23d

@MarqSolucoes
Copy link

@MarqSolucoes MarqSolucoes commented on 7bcb23d Feb 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Edit: it has no relation to this update.

@outsider31000
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

open an issue instead and make sure to specify "what problems" you are having. @MarqSolucoes

Please sign in to comment.