From e70bce0eded87b855651d030e0ba00f6850f7148 Mon Sep 17 00:00:00 2001 From: jyelon Date: Fri, 3 Apr 2026 11:42:40 -0400 Subject: [PATCH] Prop Get2/Set2 --- Plugins/UEWingman/Source/UEWingman/Handlers/Property_Set2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/UEWingman/Source/UEWingman/Handlers/Property_Set2.h b/Plugins/UEWingman/Source/UEWingman/Handlers/Property_Set2.h index 307ffad2..2844d159 100644 --- a/Plugins/UEWingman/Source/UEWingman/Handlers/Property_Set2.h +++ b/Plugins/UEWingman/Source/UEWingman/Handlers/Property_Set2.h @@ -53,7 +53,7 @@ public: for (const auto& Pair : Properties.Json->Values) { TSharedPtr* P = WingUtils::FindOneWithExternalID(Pair.Key, Handles, TEXT("Property")); - if (P && WingPropHandle::SetJson(**P, Pair.Value)) SuccessCount++; + if (WingPropHandle::SetJson(**P, Pair.Value)) SuccessCount++; } UWingServer::Printf(TEXT("Set %d/%d properties.\n"), SuccessCount, Properties.Json->Values.Num());