Fixed mantis #6609 -- LoadPlugin error messages on Robust.

This commit is contained in:
Diva Canto
2013-05-13 13:07:39 -07:00
parent af1fa95875
commit 4194d935ec
5 changed files with 26 additions and 7 deletions

View File

@@ -62,10 +62,15 @@ namespace OpenSim.Server.Handlers.Hypergrid
private bool m_VerifyCallers = false;
public UserAgentServerConnector(IConfigSource config, IHttpServer server) :
this(config, server, null)
this(config, server, (IFriendsSimConnector)null)
{
}
public UserAgentServerConnector(IConfigSource config, IHttpServer server, string configName) :
this(config, server)
{
}
public UserAgentServerConnector(IConfigSource config, IHttpServer server, IFriendsSimConnector friendsConnector) :
base(config, server, String.Empty)
{