mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 17:32:42 +08:00
Plumb some more
This commit is contained in:
@@ -187,6 +187,10 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Currency.SampleMoney
|
||||
{
|
||||
}
|
||||
|
||||
public void ApplyGroupCreationCharge(UUID agentID)
|
||||
{
|
||||
}
|
||||
|
||||
public bool ObjectGiveMoney(UUID objectID, UUID fromID, UUID toID, int amount)
|
||||
{
|
||||
string description = String.Format("Object {0} pays {1}", resolveObjectName(objectID), resolveAgentName(toID));
|
||||
@@ -1512,6 +1516,14 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Currency.SampleMoney
|
||||
return true;
|
||||
}
|
||||
|
||||
public bool GroupCreationCovered(IClientAPI client)
|
||||
{
|
||||
if (GetBalance(client) < PriceGroupCreate)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
public void ObjectBuy(IClientAPI remoteClient, UUID agentID,
|
||||
|
||||
@@ -52,7 +52,7 @@ namespace OpenSim.Region.Environment
|
||||
};
|
||||
}
|
||||
|
||||
private static LLSD buildEvent(string eventName, LLSD eventBody)
|
||||
public static LLSD buildEvent(string eventName, LLSD eventBody)
|
||||
{
|
||||
LLSDMap llsdEvent = new LLSDMap(2);
|
||||
llsdEvent.Add("message", new LLSDString(eventName));
|
||||
|
||||
@@ -955,5 +955,9 @@ namespace OpenSim.Region.Environment.Modules.World.NPC
|
||||
public void SendDeclineCallingCard (UUID transactionID)
|
||||
{
|
||||
}
|
||||
|
||||
public void SendAvatarGroupsReply(UUID avatarID, GroupMembershipData[] data)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user