diff options
Diffstat (limited to 'OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs')
-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 8fcc3cf..3f090df 100644 --- a/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs +++ b/OpenSim/Region/Examples/SimpleModule/MyNpcCharacter.cs | |||
@@ -194,10 +194,10 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
194 | 194 | ||
195 | public virtual string FirstName | 195 | public virtual string FirstName |
196 | { | 196 | { |
197 | get { return "Annoying"; } | 197 | get { return "Only"; } |
198 | } | 198 | } |
199 | 199 | ||
200 | private string lastName = "NPC" + Util.RandomClass.Next(1, 1000); | 200 | private string lastName = "Today" + Util.RandomClass.Next(1, 1000); |
201 | 201 | ||
202 | public virtual string LastName | 202 | public virtual string LastName |
203 | { | 203 | { |
@@ -485,7 +485,7 @@ namespace OpenSim.Region.Examples.SimpleModule | |||
485 | if (OnChatFromViewer != null) | 485 | if (OnChatFromViewer != null) |
486 | { | 486 | { |
487 | ChatFromViewerArgs args = new ChatFromViewerArgs(); | 487 | ChatFromViewerArgs args = new ChatFromViewerArgs(); |
488 | args.Message = "Kinda quiet around here, isn't it?"; | 488 | args.Message = "Hey You! Get out of my Home. This is my Region"; |
489 | args.Channel = 0; | 489 | args.Channel = 0; |
490 | args.From = FirstName + " " + LastName; | 490 | args.From = FirstName + " " + LastName; |
491 | args.Position = new LLVector3(128, 128, 26); | 491 | args.Position = new LLVector3(128, 128, 26); |