From 12977006f132677d5c486948c465c0322a38f1e4 Mon Sep 17 00:00:00 2001 From: Ben Lubar Date: Mon, 11 Dec 2023 15:43:33 -0600 Subject: [PATCH] fix duplicated default args --- src/game/shared/swarm/rd_inventory_shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/game/shared/swarm/rd_inventory_shared.cpp b/src/game/shared/swarm/rd_inventory_shared.cpp index b932137db..c2b733f82 100644 --- a/src/game/shared/swarm/rd_inventory_shared.cpp +++ b/src/game/shared/swarm/rd_inventory_shared.cpp @@ -3323,7 +3323,7 @@ namespace ReactiveDropInventory #endif } - void IncrementStrangePropertyOnStartingItems( SteamItemDef_t iAccessoryID, int64_t iAmount, int iPropertyIndex = 0, bool bRelative = true, bool bAllowCheating = false ) + void IncrementStrangePropertyOnStartingItems( SteamItemDef_t iAccessoryID, int64_t iAmount, int iPropertyIndex, bool bRelative, bool bAllowCheating ) { s_RD_Inventory_Manager.IncrementStrangePropertyOnStartingItems( iAccessoryID, iAmount, iPropertyIndex, bRelative, bAllowCheating ); }