From 720b1f3858db3553821a367e1311e3518180e494 Mon Sep 17 00:00:00 2001 From: Fabian Terhorst Date: Mon, 21 Oct 2024 08:05:04 +0200 Subject: [PATCH] tweak(server): allow back maximum state bag data size --- code/components/net-packet/include/StateBag.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/components/net-packet/include/StateBag.h b/code/components/net-packet/include/StateBag.h index 330ab900f8..9ddadccc75 100644 --- a/code/components/net-packet/include/StateBag.h +++ b/code/components/net-packet/include/StateBag.h @@ -9,7 +9,7 @@ namespace net::packet class StateBag : public SerializableComponent { public: - net::SerializableProperty> data; + net::SerializableProperty> data; template bool Process(T& stream) @@ -45,8 +45,8 @@ class StateBagV2 : public SerializableComponent { public: net::SerializableProperty> stateBagName; - net::SerializableProperty> key; - net::SerializableProperty> data; + net::SerializableProperty> key; + net::SerializableProperty> data; StateBagV2() = default;