Skip to content

Commit

Permalink
chore: remove dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
alandtse authored Feb 6, 2024
1 parent 0c0c746 commit c420569
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Features/WetnessEffects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ void WetnessEffects::Draw(const RE::BSShader* shader, const uint32_t)
}

// Calculate the wetness value from the water depth
data.Wetness = std::min(wetnessDepth, MAX_WETNESS); //data.settings.PuddleMinWetness);
data.Wetness = std::min(wetnessDepth, MAX_WETNESS);
data.PuddleWetness = std::min(puddleDepth, MAX_PUDDLE_WETNESS);
}
}
Expand Down Expand Up @@ -253,4 +253,4 @@ void WetnessEffects::Save(json& o_json)
void WetnessEffects::RestoreDefaultSettings()
{
settings = {};
}
}

0 comments on commit c420569

Please sign in to comment.