From a0a51fb7622f0497e738d5aa08234c3d47a03734 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Thu, 12 Sep 2013 22:35:31 -0400 Subject: [PATCH] Max prim scale on opensim is now 8192 (server restrictions may apply, limit one per customer) --- indra/newview/hippolimits.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/hippolimits.cpp b/indra/newview/hippolimits.cpp index 2ee9a7344..ea7a0a184 100644 --- a/indra/newview/hippolimits.cpp +++ b/indra/newview/hippolimits.cpp @@ -33,7 +33,7 @@ void HippoLimits::setOpenSimLimits() { mMaxAgentGroups = gHippoGridManager->getConnectedGrid()->getMaxAgentGroups(); if (mMaxAgentGroups < 0) mMaxAgentGroups = 50; - mMaxPrimScale = 256.0f; + mMaxPrimScale = 8192.0f; mMaxHeight = 10000.0f; if (gHippoGridManager->getConnectedGrid()->isRenderCompat()) { llinfos << "Using rendering compatible OpenSim limits." << llendl;