Reintroduce the return value of llGiveMoney. The grid will crash and burn without it.

This commit is contained in:
Melanie
2013-01-24 18:23:39 +01:00
parent 9d2e832b85
commit e785242c49
3 changed files with 12 additions and 12 deletions

View File

@@ -876,9 +876,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
m_LSL_Functions.llGiveInventoryList(destination, category, inventory);
}
public void llGiveMoney(string destination, int amount)
public LSL_Integer llGiveMoney(string destination, int amount)
{
m_LSL_Functions.llGiveMoney(destination, amount);
return m_LSL_Functions.llGiveMoney(destination, amount);
}
public LSL_String llTransferLindenDollars(string destination, int amount)