muffin v7.38.2
This commit is contained in:
parent
0336b9c9e9
commit
bbc394c386
10 changed files with 737 additions and 437 deletions
|
|
@ -69,6 +69,10 @@ internal sealed class Configuration : IPluginConfiguration
|
|||
|
||||
public HashSet<uint> BlacklistedDutyCfcIds { get; set; } = new HashSet<uint>();
|
||||
|
||||
public EDutyMode DefaultDutyMode { get; set; }
|
||||
|
||||
public Dictionary<uint, EDutyMode> DutyModeOverrides { get; set; } = new Dictionary<uint, EDutyMode>();
|
||||
|
||||
public Dictionary<string, bool> ExpansionHeaderStates { get; set; } = new Dictionary<string, bool>();
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -153,6 +153,7 @@ public sealed class QuestionablePlugin : IDalamudPlugin, IDisposable
|
|||
serviceCollection.AddTaskFactoryAndExecutor<AetheryteFreeOrFavored.Register, AetheryteFreeOrFavored.Factory, AetheryteFreeOrFavored.DoRegister>();
|
||||
serviceCollection.AddTaskFactoryAndExecutor<Combat.Task, Combat.Factory, Combat.HandleCombat>();
|
||||
serviceCollection.AddTaskFactoryAndExecutor<Duty.OpenDutyFinderTask, Duty.Factory, Duty.OpenDutyFinderExecutor>();
|
||||
serviceCollection.AddTaskExecutor<Duty.WaitForPartyTask, Duty.WaitForPartyExecutor>();
|
||||
serviceCollection.AddTaskExecutor<Duty.StartAutoDutyTask, Duty.StartAutoDutyExecutor>();
|
||||
serviceCollection.AddTaskExecutor<Duty.WaitAutoDutyTask, Duty.WaitAutoDutyExecutor>();
|
||||
serviceCollection.AddTaskFactory<Emote.Factory>();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue