diff options
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/IClientAPI.cs | 2 | ||||
-rw-r--r-- | OpenSim/Framework/RegionInfo.cs | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Framework/IClientAPI.cs b/OpenSim/Framework/IClientAPI.cs index 0a4dcac..80171b4 100644 --- a/OpenSim/Framework/IClientAPI.cs +++ b/OpenSim/Framework/IClientAPI.cs | |||
@@ -1401,7 +1401,7 @@ namespace OpenSim.Framework | |||
1401 | void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt); | 1401 | void SendGroupTransactionsSummaryDetails(IClientAPI sender,UUID groupID, UUID transactionID, UUID sessionID,int amt); |
1402 | 1402 | ||
1403 | void SendChangeUserRights(UUID agentID, UUID friendID, int rights); | 1403 | void SendChangeUserRights(UUID agentID, UUID friendID, int rights); |
1404 | void SendTextBoxRequest(string message, int chatChannel, string objectname, string ownerFirstName, string ownerLastName, UUID objectId); | 1404 | void SendTextBoxRequest(string message, int chatChannel, string objectname, UUID ownerID, string ownerFirstName, string ownerLastName, UUID objectId); |
1405 | 1405 | ||
1406 | void StopFlying(ISceneEntity presence); | 1406 | void StopFlying(ISceneEntity presence); |
1407 | 1407 | ||
diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs index 17184d6..b0202fb 100644 --- a/OpenSim/Framework/RegionInfo.cs +++ b/OpenSim/Framework/RegionInfo.cs | |||
@@ -769,10 +769,10 @@ namespace OpenSim.Framework | |||
769 | "Clamp prims to max size", "false", true); | 769 | "Clamp prims to max size", "false", true); |
770 | 770 | ||
771 | configMember.addConfigurationOption("object_capacity", ConfigurationOption.ConfigurationTypes.TYPE_INT32, | 771 | configMember.addConfigurationOption("object_capacity", ConfigurationOption.ConfigurationTypes.TYPE_INT32, |
772 | "Max objects this sim will hold", "0", true); | 772 | "Max objects this sim will hold", "15000", true); |
773 | 773 | ||
774 | configMember.addConfigurationOption("agent_capacity", ConfigurationOption.ConfigurationTypes.TYPE_INT32, | 774 | configMember.addConfigurationOption("agent_capacity", ConfigurationOption.ConfigurationTypes.TYPE_INT32, |
775 | "Max agents this sim will hold", "0", true); | 775 | "Max avatars this sim will hold", "100", true); |
776 | 776 | ||
777 | configMember.addConfigurationOption("scope_id", ConfigurationOption.ConfigurationTypes.TYPE_UUID, | 777 | configMember.addConfigurationOption("scope_id", ConfigurationOption.ConfigurationTypes.TYPE_UUID, |
778 | "Scope ID for this region", UUID.Zero.ToString(), true); | 778 | "Scope ID for this region", UUID.Zero.ToString(), true); |