aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-08-01 22:30:34 +0100
committerJustin Clark-Casey (justincc)2012-08-01 22:30:34 +0100
commit5f500c89ce9df27910fa6007d4d87aa238a8a2ba (patch)
tree658a56e1c46a25b157e91f1601eb0a57630f6313 /OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-5f500c89ce9df27910fa6007d4d87aa238a8a2ba.zip
opensim-SC_OLD-5f500c89ce9df27910fa6007d4d87aa238a8a2ba.tar.gz
opensim-SC_OLD-5f500c89ce9df27910fa6007d4d87aa238a8a2ba.tar.bz2
opensim-SC_OLD-5f500c89ce9df27910fa6007d4d87aa238a8a2ba.tar.xz
Fix a bug in pCampbot grabbing behaviour where an exception would be thrown if the bot was not yet aware of any objects.
Diffstat (limited to '')
-rw-r--r--OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs3
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs b/OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs
index 701881e..66a336a 100644
--- a/OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs
+++ b/OpenSim/Tools/pCampBot/Behaviours/GrabbingBehaviour.cs
@@ -47,6 +47,9 @@ namespace pCampBot
47 { 47 {
48 Dictionary<UUID, Primitive> objects = Bot.Objects; 48 Dictionary<UUID, Primitive> objects = Bot.Objects;
49 49
50 if (objects.Count <= 0)
51 return;
52
50 Primitive prim = objects.ElementAt(Bot.Random.Next(0, objects.Count - 1)).Value; 53 Primitive prim = objects.ElementAt(Bot.Random.Next(0, objects.Count - 1)).Value;
51 54
52 // This appears to be a typical message sent when a viewer user clicks a clickable object 55 // This appears to be a typical message sent when a viewer user clicks a clickable object