Add top of file

Fix pasting error
This commit is contained in:
Peteys93 2016-04-26 03:36:44 -04:00
parent 375ec6c671
commit bff5d0fe10

View File

@ -29,7 +29,12 @@ namespace MCGalaxy.Commands
public override void Use(Player p, string message) {
if (message == "") { Help(p); return; }
string[] args;
string tempmessage = message;
message = message.Split(' ')[0];
args = tempmessage.Split(' ');
Player who = PlayerInfo.FindOrShowMatches(p, message);
if (who == null) return;
if (who == p)