Squelch an error message on sim shutdown when not using MXP
parent
5d5d0e699a
commit
8a64421735
|
@ -110,8 +110,11 @@ namespace OpenSim.Client.MXP
|
||||||
public void Close()
|
public void Close()
|
||||||
{
|
{
|
||||||
m_shutdown = true;
|
m_shutdown = true;
|
||||||
lock (m_ticker)
|
if (m_ticker != null)
|
||||||
m_ticker.Stop();
|
{
|
||||||
|
lock (m_ticker)
|
||||||
|
m_ticker.Stop();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public string Name
|
public string Name
|
||||||
|
|
Loading…
Reference in New Issue