Skip to content

Commit

Permalink
Fixed the soul memory matching disable option for dark souls 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
TLeonardUK committed Jan 8, 2024
1 parent f2709ee commit 943ab29
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Source/Server/Config/RuntimeConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,11 @@ int RuntimeConfigSoulMemoryMatchingParameters::CalculateTier(int SoulMemory) con

bool RuntimeConfigSoulMemoryMatchingParameters::CheckMatch(int HostSoulMemory, int ClientSoulMemory, bool UsingPassword) const
{
if (DisableSoulMemoryMatching)
{
return true;
}

int HostSoulTier = CalculateTier(HostSoulMemory);
int ClientSoulTier = CalculateTier(ClientSoulMemory);

Expand Down

0 comments on commit 943ab29

Please sign in to comment.