minor changes on llgettime

This commit is contained in:
UbitUmarov
2024-11-29 21:23:10 +00:00
parent 4b993d2379
commit 5aa37e74eb
4 changed files with 12 additions and 12 deletions

View File

@@ -514,7 +514,7 @@ namespace OpenSim.Region.ScriptEngine.Yengine
XmlElement scpttimeN = (XmlElement)scriptStateN.SelectSingleNode("scrpTime");
if (scpttimeN != null && Double.TryParse(scpttimeN.InnerText, out double t))
{
m_XMRLSLApi.SetLSLTimer(Util.GetTimeStampMS() - t);
m_XMRLSLApi.SetLSLTimerMS(Util.GetTimeStampMS() - t);
}
}