muffin v6.12
This commit is contained in:
parent
cfb4dea47e
commit
c8197297b2
58 changed files with 40038 additions and 58059 deletions
|
@ -16,6 +16,10 @@ internal sealed class UnlockLinkQuestInfo : IQuestInfo
|
|||
|
||||
public bool IsRepeatable => false;
|
||||
|
||||
public DateTime? QuestExpiry { get; }
|
||||
|
||||
public string? Patch { get; }
|
||||
|
||||
public ImmutableList<PreviousQuestInfo> PreviousQuests => ImmutableList.Create(default(ReadOnlySpan<PreviousQuestInfo>));
|
||||
|
||||
public EQuestJoin PreviousQuestJoin => EQuestJoin.All;
|
||||
|
@ -34,10 +38,12 @@ internal sealed class UnlockLinkQuestInfo : IQuestInfo
|
|||
|
||||
public EExpansionVersion Expansion => EExpansionVersion.ARealmReborn;
|
||||
|
||||
public UnlockLinkQuestInfo(UnlockLinkId unlockLinkId, string name, uint issuerDataId)
|
||||
public UnlockLinkQuestInfo(UnlockLinkId unlockLinkId, string name, uint issuerDataId, DateTime? expiryTime, string? patch = null)
|
||||
{
|
||||
QuestId = unlockLinkId;
|
||||
Name = name;
|
||||
IssuerDataId = issuerDataId;
|
||||
QuestExpiry = expiryTime;
|
||||
Patch = patch;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue