Use parcel prim limit (not region limit) when checking if area is full.
parent
b463870914
commit
ff62b90636
|
@ -176,7 +176,7 @@ namespace OpenSim.Region.OptionalModules
|
||||||
{
|
{
|
||||||
string response = null;
|
string response = null;
|
||||||
|
|
||||||
int simulatorCapacity = lo.GetSimulatorMaxPrimCount();
|
int simulatorCapacity = lo.GetParcelMaxPrimCount();
|
||||||
if ((objectCount + lo.PrimCounts.Total) > simulatorCapacity)
|
if ((objectCount + lo.PrimCounts.Total) > simulatorCapacity)
|
||||||
{
|
{
|
||||||
response = "Unable to rez object because the parcel is too full";
|
response = "Unable to rez object because the parcel is too full";
|
||||||
|
|
Loading…
Reference in New Issue