* refactor: move estate dialog to DialogModule

* This appeared only to be implemented for the region, and doesn't currently seem to work anyway
This commit is contained in:
Justin Clarke Casey
2009-01-08 19:05:22 +00:00
parent 17f783457b
commit 9a97a6866f
3 changed files with 31 additions and 5 deletions

View File

@@ -99,7 +99,15 @@ namespace OpenSim.Region.Environment.Modules.Avatar.Dialog
if (!presence.IsChildAgent)
presence.ControllingClient.SendAlertMessage(message);
}
}
}
public void SendNotificationToUsersInEstate(
UUID fromAvatarID, string fromAvatarName, string message)
{
// TODO: This does not yet do what it says on the tin - it only sends the message to users in the same
// region as the sending avatar.
SendNotificationToUsersInRegion(fromAvatarID, fromAvatarName, message);
}
public void SendNotificationToUsersInRegion(
UUID fromAvatarID, string fromAvatarName, string message)