mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
Removal of ToList()
This commit is contained in:
parent
9f5cf132f0
commit
7af5f90e30
10 changed files with 48 additions and 42 deletions
|
|
@ -45,7 +45,7 @@ namespace ArkData
|
|||
{
|
||||
try
|
||||
{
|
||||
var online = Enumerable.OfType<PlayerInfo>(new SSQL().Players(new IPEndPoint(IPAddress.Parse(ipString), port))).ToList();
|
||||
var online = Enumerable.OfType<PlayerInfo>(new SSQL().Players(new IPEndPoint(IPAddress.Parse(ipString), port)));
|
||||
|
||||
for (var i = 0; i < Players.Count; i++)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue