muffin v7.5.0
This commit is contained in:
parent
afafd5e377
commit
a6481e7b9a
67 changed files with 4281 additions and 2372 deletions
|
|
@ -23,7 +23,7 @@ internal sealed class PartyWatchdog : IDisposable
|
|||
|
||||
private readonly ILogger<PartyWatchdog> _logger;
|
||||
|
||||
private ushort? _uncheckedTeritoryId;
|
||||
private uint? _uncheckedTeritoryId;
|
||||
|
||||
public PartyWatchdog(QuestController questController, Configuration configuration, TerritoryData territoryData, IClientState clientState, IChatGui chatGui, ILogger<PartyWatchdog> logger)
|
||||
{
|
||||
|
|
@ -36,7 +36,7 @@ internal sealed class PartyWatchdog : IDisposable
|
|||
_clientState.TerritoryChanged += TerritoryChanged;
|
||||
}
|
||||
|
||||
private unsafe void TerritoryChanged(ushort newTerritoryId)
|
||||
private unsafe void TerritoryChanged(uint newTerritoryId)
|
||||
{
|
||||
if (!_configuration.Advanced.DisablePartyWatchdog)
|
||||
{
|
||||
|
|
@ -137,7 +137,7 @@ internal sealed class PartyWatchdog : IDisposable
|
|||
_uncheckedTeritoryId = null;
|
||||
}
|
||||
|
||||
private bool IsDutyConfiguredForParty(ushort territoryId)
|
||||
private bool IsDutyConfiguredForParty(uint territoryId)
|
||||
{
|
||||
if (!_territoryData.TryGetContentFinderConditionIdForTerritory(territoryId, out var cfcId))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue