Call ScriptSleep() instead of llSleep() in routine for llEmail.

Signed-off-by: teravus <teravus@gmail.com>
This commit is contained in:
Kevin Cozens
2013-10-15 21:15:48 -04:00
committed by teravus
parent 571a75f934
commit 84a149ecbf

View File

@@ -3325,7 +3325,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
}
emailModule.SendEmail(m_host.UUID, address, subject, message);
llSleep(EMAIL_PAUSE_TIME);
ScriptSleep(EMAIL_PAUSE_TIME * 1000);
}
public void llGetNextEmail(string address, string subject)