mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 09:45:47 +08:00
* Added additional debug testing info to Scene
* Corrected issue with MRMs where it would attempt to overwrite an already loaded DLL. (and thus fail with cryptic UnauthorizedAccessException.) * Made DrunkenTextAppreciationModule.cs MRM not crash with StackOverflowException * Added some temporary logging to MRM World.*
This commit is contained in:
@@ -38,11 +38,14 @@ namespace OpenSim
|
||||
|
||||
void World_OnChat(IWorld sender, ChatEventArgs e)
|
||||
{
|
||||
e.Text.Replace("s", "sh");
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
public override void Stop()
|
||||
|
||||
Reference in New Issue
Block a user