Skip to content
Snippets Groups Projects
Commit 33d7dc25 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Fix broken bom opensim check

parent 2f511d49
No related branches found
No related tags found
No related merge requests found
......@@ -935,7 +935,7 @@ void LLVOAvatarSelf::checkBOMRebakeRequired()
{
auto newBOMStatus = getRegion()->bakesOnMeshEnabled();
static const LLCachedControl<bool> using_bom(gSavedSettings, "CurrentlyUsingBakesOnMesh", true);
if(!using_bom != newBOMStatus)
if(using_bom != newBOMStatus)
{
// force a rebake when the last grid we were on (including previous login) had different BOM support
// This replicates forceAppearanceUpdate rather than pulling in the whole of llavatarself.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment