diff options
Diffstat (limited to 'OpenSim/Region/Examples')
-rw-r--r-- | OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs index 6d69247..fa6ff22 100644 --- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | |||
@@ -55,7 +55,7 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
55 | public event Action<IClientAPI> OnConnectionClosed; | 55 | public event Action<IClientAPI> OnConnectionClosed; |
56 | 56 | ||
57 | public event ImprovedInstantMessage OnInstantMessage; | 57 | public event ImprovedInstantMessage OnInstantMessage; |
58 | public event ChatMessage OnChatFromViewer; | 58 | public event ChatMessage OnChatFromClient; |
59 | public event TextureRequest OnRequestTexture; | 59 | public event TextureRequest OnRequestTexture; |
60 | public event RezObject OnRezObject; | 60 | public event RezObject OnRezObject; |
61 | public event ModifyTerrain OnModifyTerrain; | 61 | public event ModifyTerrain OnModifyTerrain; |
@@ -696,7 +696,7 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
696 | 696 | ||
697 | if (count >= 10) | 697 | if (count >= 10) |
698 | { | 698 | { |
699 | if (OnChatFromViewer != null) | 699 | if (OnChatFromClient != null) |
700 | { | 700 | { |
701 | OSChatMessage args = new OSChatMessage(); | 701 | OSChatMessage args = new OSChatMessage(); |
702 | args.Message = "Hey You! Get out of my Home. This is my Region"; | 702 | args.Message = "Hey You! Get out of my Home. This is my Region"; |
@@ -706,7 +706,7 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
706 | args.Sender = this; | 706 | args.Sender = this; |
707 | args.Type = ChatTypeEnum.Shout; | 707 | args.Type = ChatTypeEnum.Shout; |
708 | 708 | ||
709 | OnChatFromViewer(this, args); | 709 | OnChatFromClient(this, args); |
710 | } | 710 | } |
711 | count = -1; | 711 | count = -1; |
712 | } | 712 | } |