From 73fa791e04d1af1aa444f1adfd52f0dc3481ee8e Mon Sep 17 00:00:00 2001 From: Vincent Date: Wed, 31 Jul 2024 13:07:31 +0100 Subject: [PATCH] fix(command): add missing field in CommandRegistry::Overload --- include/bedrock/server/commands/command_registry.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/bedrock/server/commands/command_registry.h b/include/bedrock/server/commands/command_registry.h index e10c6962d..214a11d76 100644 --- a/include/bedrock/server/commands/command_registry.h +++ b/include/bedrock/server/commands/command_registry.h @@ -162,6 +162,7 @@ class CommandRegistry { std::unique_ptr (*factory)(); // +8 std::vector params; // +16 std::int32_t version_offset{-1}; // +40 + bool chaining{false}; // +44 std::vector params_symbol; // +48 };