cosmetics on janusmessages

This commit is contained in:
UbitUmarov
2026-03-11 20:37:50 +00:00
parent f785a45418
commit ccc6e7b3b5
3 changed files with 65 additions and 79 deletions

View File

@@ -66,6 +66,12 @@ namespace OpenSim.Framework
public bool InstallPlugin(int ndx, out Dictionary<string, object> result)
{
Dictionary<string, object> res = new Dictionary<string, object>();
if (ndx < 0 )
{
MainConsole.Instance.Output("Selection out of range");
result = res;
return false;
}
PackageCollection pack = new PackageCollection();
PackageCollection toUninstall;