* Minor MRM Cleanup

* Interfaces now live in Interfaces subdirectory. 
* Namespace does not yet reflect this change.
* Final namespace for MRMs will probably sit somewhere around OpenSim.Extend.MRM[?]
This commit is contained in:
Adam Frisby
2009-04-11 10:21:04 +00:00
parent 988737b182
commit b8619386eb
14 changed files with 662 additions and 614 deletions

View File

@@ -38,13 +38,21 @@ namespace OpenSim
void World_OnChat(IWorld sender, ChatEventArgs e)
{
if(!e.Text.Contains("hic!"))
if (e.Sender is IAvatar)
{
e.Text = e.Text.Replace("s", "sh");
e.Text = e.Text.Replace("S", "Sh");
e.Text += " ...hic!";
if (!e.Text.Contains("hic!"))
{
e.Text = e.Text.Replace("s", "sh");
e.Text = e.Text.Replace("S", "Sh");
e.Text += " ...hic!";
Host.Object.Say(e.Text);
Host.Object.Say(e.Text);
}
}
if(e.Sender is IObject)
{
// Ignore
}
}