mantis 8781: fix

This commit is contained in:
UbitUmarov
2020-10-16 18:48:58 +01:00
parent b09b0e6476
commit 9075c3fd08
2 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ For rebuilding and debugging use the msbuild option switches
# Configure #
## Standalone mode ##
Copy `OpenSim.ini.example` to `OpenSim.ini` in the `bin/` directory, and verify the `[Const]' section, correcting for your case.
Copy `OpenSim.ini.example` to `OpenSim.ini` in the `bin/` directory, and verify the `[Const]` section, correcting for your case.
On `[Architecture]` section uncomment only the line with Standalone.ini if you do now want HG, or the line with StandaloneHypergrid.ini if you do
@@ -56,7 +56,7 @@ The StandaloneCommon.ini file describes the database and backend services that O
## Grid mode ##
Each grid may have its own requirements, so FOLLOW your Grid instructions!
in general:
Copy `OpenSim.ini.example` to `OpenSim.ini` in the `bin/` directory, and verify the `[Const]' section, correcting for your case
Copy `OpenSim.ini.example` to `OpenSim.ini` in the `bin/` directory, and verify the `[Const]` section, correcting for your case
On `[Architecture]` section uncomment only the line with Grid.ini if you do now want HG, or the line with GridHypergrid.ini if you do

View File

@@ -193,7 +193,7 @@ namespace OpenSim.Region.CoreModules.Avatar.Inventory.Transfer
if (im.binaryBucket.Length >= 34 && im.binaryBucket.Length % 17 == 0)
{
byte[] iddata = im.binaryBucket;
for (int i = 17; i < im.binaryBucket.Length - 17; i += 17)
for (int i = 17; i <= im.binaryBucket.Length - 17; i += 17)
ids[new UUID(iddata, i + 1)] = (AssetType)im.binaryBucket[i];
}