cleanup last patch

This commit is contained in:
UbitUmarov
2018-12-11 18:23:26 +00:00
parent 0881840946
commit d6c9ddfdee
5 changed files with 268 additions and 50 deletions

View File

@@ -682,10 +682,12 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
{
m_OSSL_Functions.osNpcSay(npc, channel, message);
}
public void osNpcSayTo(LSL_Key npc, string target, int channel, string msg)
public void osNpcSayTo(LSL_Key npc, LSL_Key target, int channel, string msg)
{
m_OSSL_Functions.osNpcSayTo(npc, target, channel, msg);
}
}
public void osNpcShout(key npc, int channel, string message)
{
m_OSSL_Functions.osNpcShout(npc, channel, message);