Added !help entries for !test weather

This commit is contained in:
TheManii 2016-05-09 00:40:46 -04:00
parent 101a2d50ed
commit a99a348c36
3 changed files with 33 additions and 5 deletions

View file

@ -554,7 +554,15 @@ namespace FFXIVClassic_Lobby_Server
else if (split[1].Equals("setgraphic"))
sendMessage(client, Resources.CPsetgraphic);
*/
}
}
if (split.Length == 3)
{
if(split[1].Equals("test"))
{
if (split[2].Equals("weather"))
sendMessage(client, Resources.CPtestweather);
}
}
return true;
}