Warp3D tried to do something in RegionLoaded even when the module was disabled

httptests
Kevin Cozens 2018-05-16 14:29:45 -04:00
parent 1ea71c6182
commit c7f3f3586d
1 changed files with 3 additions and 0 deletions

View File

@ -136,6 +136,9 @@ namespace OpenSim.Region.CoreModules.World.Warp3DMap
public void RegionLoaded(Scene scene)
{
if (!m_Enabled)
return;
m_imgDecoder = m_scene.RequestModuleInterface<IJ2KDecoder>();
}