mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-19 18:47:55 +08:00
Merge branch 'MaaAssistantArknights:dev' into dev
This commit is contained in:
@@ -1752,6 +1752,21 @@ namespace MaaWpfGui.ViewModels.UI
|
||||
}
|
||||
}
|
||||
|
||||
private string _roguelikeInvestmentEnterSecondFloor = ConfigurationHelper.GetValue(ConfigurationKeys.RoguelikeInvestmentEnterSecondFloor, true.ToString());
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether investment is enabled.
|
||||
/// </summary>
|
||||
public bool RoguelikeInvestmentEnterSecondFloor
|
||||
{
|
||||
get => bool.Parse(_roguelikeInvestmentEnterSecondFloor);
|
||||
set
|
||||
{
|
||||
SetAndNotify(ref _roguelikeInvestmentEnterSecondFloor, value.ToString());
|
||||
ConfigurationHelper.SetValue(ConfigurationKeys.RoguelikeInvestmentEnterSecondFloor, value.ToString());
|
||||
}
|
||||
}
|
||||
|
||||
private string _roguelikeRefreshTraderWithDice = ConfigurationHelper.GetValue(ConfigurationKeys.RoguelikeRefreshTraderWithDice, false.ToString());
|
||||
|
||||
public bool RoguelikeRefreshTraderWithDice
|
||||
|
||||
Reference in New Issue
Block a user