diff options
author | Diva Canto | 2014-02-21 10:06:08 -0800 |
---|---|---|
committer | Diva Canto | 2014-02-21 10:06:08 -0800 |
commit | cddf1ec0dcae54c50f2ba59039eca196fd678410 (patch) | |
tree | 4da55e4c6a118d5252593622ba1e1ec8dd590510 /OpenSim/Tools/pCampBot/BotManager.cs | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC-cddf1ec0dcae54c50f2ba59039eca196fd678410.zip opensim-SC-cddf1ec0dcae54c50f2ba59039eca196fd678410.tar.gz opensim-SC-cddf1ec0dcae54c50f2ba59039eca196fd678410.tar.bz2 opensim-SC-cddf1ec0dcae54c50f2ba59039eca196fd678410.tar.xz |
Added 2 new behaviors to pCampBot
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Tools/pCampBot/BotManager.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs index abc71cb..3647831 100644 --- a/OpenSim/Tools/pCampBot/BotManager.cs +++ b/OpenSim/Tools/pCampBot/BotManager.cs | |||
@@ -290,6 +290,12 @@ namespace pCampBot | |||
290 | if (abName == "t") | 290 | if (abName == "t") |
291 | newBehaviour = new TeleportBehaviour(); | 291 | newBehaviour = new TeleportBehaviour(); |
292 | 292 | ||
293 | if (abName == "tw") | ||
294 | newBehaviour = new TwitchyBehaviour(); | ||
295 | |||
296 | if (abName == "ph2") | ||
297 | newBehaviour = new PhysicsBehaviour2(); | ||
298 | |||
293 | if (newBehaviour != null) | 299 | if (newBehaviour != null) |
294 | { | 300 | { |
295 | behaviours.Add(newBehaviour); | 301 | behaviours.Add(newBehaviour); |