muffin v6.35 with old pdb
This commit is contained in:
parent
ac85599236
commit
b5d2cc6708
31 changed files with 958 additions and 958 deletions
|
|
@ -80,12 +80,12 @@ internal sealed class TerritoryData
|
|||
|
||||
public string GetNameAndId(ushort territoryId)
|
||||
{
|
||||
string name = GetName(territoryId);
|
||||
if (name != null)
|
||||
string t = GetName(territoryId);
|
||||
if (t != null)
|
||||
{
|
||||
IFormatProvider invariantCulture = CultureInfo.InvariantCulture;
|
||||
DefaultInterpolatedStringHandler handler = new DefaultInterpolatedStringHandler(3, 2, invariantCulture);
|
||||
handler.AppendFormatted(name);
|
||||
handler.AppendFormatted(t);
|
||||
handler.AppendLiteral(" (");
|
||||
handler.AppendFormatted(territoryId);
|
||||
handler.AppendLiteral(")");
|
||||
|
|
@ -106,9 +106,9 @@ internal sealed class TerritoryData
|
|||
|
||||
public bool IsQuestBattleInstance(ushort territoryId)
|
||||
{
|
||||
if (_dutyTerritories.TryGetValue(territoryId, out var value))
|
||||
if (_dutyTerritories.TryGetValue(territoryId, out var debugStateProvider))
|
||||
{
|
||||
return value == 7;
|
||||
return debugStateProvider == 7;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
@ -130,9 +130,9 @@ internal sealed class TerritoryData
|
|||
|
||||
public bool TryGetContentFinderConditionForSoloInstance(ElementId questId, byte index, [NotNullWhen(true)] out ContentFinderConditionData? contentFinderConditionData)
|
||||
{
|
||||
if (_questBattlesToContentFinderCondition.TryGetValue((questId, index), out var value))
|
||||
if (_questBattlesToContentFinderCondition.TryGetValue((questId, index), out var priorityQuestId))
|
||||
{
|
||||
return _contentFinderConditions.TryGetValue(value, out contentFinderConditionData);
|
||||
return _contentFinderConditions.TryGetValue(priorityQuestId, out contentFinderConditionData);
|
||||
}
|
||||
contentFinderConditionData = null;
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue