mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 01:35:46 +08:00
Thank you kindly, TLaukkan for a patch that:
Added support for loading bare asset binaries (as opposed to xml encoded asset base) to both sandbox asset service and cable beach. * Added support for enabling region asset service when mxp is enabled. * Moved base http server content type defaulting before invocation of request handle method to allow for variable content type in the response.
This commit is contained in:
@@ -58,7 +58,9 @@ namespace OpenSim.Region.CoreModules.Framework.Services
|
||||
m_scene = scene;
|
||||
|
||||
// This module is only on for standalones in hypergrid mode
|
||||
enabled = !config.Configs["Startup"].GetBoolean("gridmode", true) && config.Configs["Startup"].GetBoolean("hypergrid", false);
|
||||
enabled = (!config.Configs["Startup"].GetBoolean("gridmode", true)) &&
|
||||
(config.Configs["Startup"].GetBoolean("hypergrid", true)||
|
||||
config.Configs["MXP"].GetBoolean("Enabled", true));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user