From 8e6378208cdf6b62f99caaf2ea0e4ad2007e0bc4 Mon Sep 17 00:00:00 2001 From: mrhid6 Date: Tue, 26 Nov 2024 14:15:02 +0000 Subject: [PATCH] feat: Additional DS Options --- Source/RefinedRDApi/Public/Structs/RRDADSStructs.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Source/RefinedRDApi/Public/Structs/RRDADSStructs.h b/Source/RefinedRDApi/Public/Structs/RRDADSStructs.h index c08cd0e..6e6dfbd 100644 --- a/Source/RefinedRDApi/Public/Structs/RRDADSStructs.h +++ b/Source/RefinedRDApi/Public/Structs/RRDADSStructs.h @@ -55,12 +55,16 @@ public: UPROPERTY(EditDefaultsOnly, BlueprintReadOnly, meta=(EditCondition = mOverrideItemFilter)) TArray> mItemFilter; + /* Adds only the filtered item from the slot to the Item Selection dropdown. */ + UPROPERTY(EditDefaultsOnly, BlueprintReadOnly) + bool mCheckSlotItemFilter = false; + /* Should check if the inventory slot has an Item Filter set This will override the item class that the player selects with the allowed item class on the slot. Also disables item selection in the UI. */ UPROPERTY(EditDefaultsOnly, BlueprintReadOnly) - bool mCheckSlotItemFilter = false; + bool mAutomaticallySetFromSlotItemFilter = false; }; USTRUCT(BlueprintType)