mirror of
https://github.com/opensim/opensim.git
synced 2026-08-07 17:55:48 +08:00
Add pCampbot "show bot" console command to show more detailed information on a particular bot (e.g. what sims they are connected to)
This commit is contained in:
@@ -97,11 +97,20 @@ namespace pCampBot
|
||||
/// </summary>
|
||||
public ConnectionState ConnectionState { get; private set; }
|
||||
|
||||
public List<Simulator> Simulators
|
||||
{
|
||||
get
|
||||
{
|
||||
lock (Client.Network.Simulators)
|
||||
return new List<Simulator>(Client.Network.Simulators);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// The number of connections that this bot has to different simulators.
|
||||
/// </summary>
|
||||
/// <value>Includes both root and child connections.</value>
|
||||
public int ConnectionsCount
|
||||
public int SimulatorsCount
|
||||
{
|
||||
get
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user