diff options
Diffstat (limited to 'OpenSim/Tools/pCampBot/BotManager.cs')
-rw-r--r-- | OpenSim/Tools/pCampBot/BotManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Tools/pCampBot/BotManager.cs b/OpenSim/Tools/pCampBot/BotManager.cs index 3b08adc..aed3fa8 100644 --- a/OpenSim/Tools/pCampBot/BotManager.cs +++ b/OpenSim/Tools/pCampBot/BotManager.cs | |||
@@ -79,16 +79,16 @@ namespace pCampBot | |||
79 | } | 79 | } |
80 | } | 80 | } |
81 | 81 | ||
82 | m_console.Commands.AddCommand("bot", "shutdown", | 82 | m_console.Commands.AddCommand("bot", false, "shutdown", |
83 | "shutdown", | 83 | "shutdown", |
84 | "Gracefully shut down bots", HandleShutdown); | 84 | "Gracefully shut down bots", HandleShutdown); |
85 | 85 | ||
86 | m_console.Commands.AddCommand("bot", "quit", | 86 | m_console.Commands.AddCommand("bot", false, "quit", |
87 | "quit", | 87 | "quit", |
88 | "Force quit (DANGEROUS, try shutdown first)", | 88 | "Force quit (DANGEROUS, try shutdown first)", |
89 | HandleShutdown); | 89 | HandleShutdown); |
90 | 90 | ||
91 | m_console.Commands.AddCommand("bot", "add bots", | 91 | m_console.Commands.AddCommand("bot", false, "add bots", |
92 | "add bots <number>", | 92 | "add bots <number>", |
93 | "Add more bots", HandleAddBots); | 93 | "Add more bots", HandleAddBots); |
94 | 94 | ||