Add MCC.GetOnlinePlayers() in scripts

See #233
This commit is contained in:
ORelio 2017-01-04 21:54:22 +01:00
parent 6c711055bd
commit 8cc9046454

View file

@ -263,6 +263,15 @@ namespace MinecraftClient
tickHandler.WaitOne();
}
/// <summary>
/// Return the list of currently online players
/// </summary>
/// <returns>List of online players</returns>
new public string[] GetOnlinePlayers()
{
return base.GetOnlinePlayers();
}
/* == Additional Methods useful for Script API == */
/// <summary>