greedy stack transfers
This commit is contained in:
10
Settings.cs
10
Settings.cs
@@ -72,6 +72,7 @@ namespace UIFixes
|
||||
public static ConfigEntry<bool> SwapItems { get; set; }
|
||||
public static ConfigEntry<bool> SwapImpossibleContainers { get; set; }
|
||||
public static ConfigEntry<bool> SynchronizeStashScrolling { get; set; }
|
||||
public static ConfigEntry<bool> GreedyStackMove { get; set; }
|
||||
public static ConfigEntry<bool> MergeFIRMoney { get; set; }
|
||||
public static ConfigEntry<bool> MergeFIRAmmo { get; set; }
|
||||
public static ConfigEntry<bool> MergeFIROther { get; set; }
|
||||
@@ -359,6 +360,15 @@ namespace UIFixes
|
||||
null,
|
||||
new ConfigurationManagerAttributes { })));
|
||||
|
||||
configEntries.Add(GreedyStackMove = config.Bind(
|
||||
InventorySection,
|
||||
"Always Move Entire Stacks",
|
||||
false,
|
||||
new ConfigDescription(
|
||||
"When moving into a container that contains a partial stack, this will top up that stack and try to move the remainder into an open spot (or another stack), instead of leaving it behind.",
|
||||
null,
|
||||
new ConfigurationManagerAttributes { })));
|
||||
|
||||
configEntries.Add(MergeFIRMoney = config.Bind(
|
||||
InventorySection,
|
||||
"Autostack Money with FiR Money",
|
||||
|
Reference in New Issue
Block a user