1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

More memory reading changes. We're getting there.

This commit is contained in:
raidmax@live.com
2015-07-06 12:13:42 -05:00
parent b8557fdb81
commit 6b381a214d
8 changed files with 395 additions and 263 deletions

View File

@ -799,7 +799,7 @@ namespace IW4MAdmin
public override void Execute(Event E)
{
String[] Response = E.Owner.RCON.addRCON(E.Data.Trim());
if (Response.Length > 0)
if (Response != null && Response.Length > 0)
E.Origin.Tell("Successfuly sent RCON command!");
}
}