Changed chat to send. Documentation included

This commit is contained in:
Michael Yoo
2013-01-11 21:34:21 +09:00
parent f3e9d4df31
commit 09c2c1b2ee
3 changed files with 41 additions and 1 deletions

View File

@ -35,7 +35,7 @@ class ChatAPI{
}
public function chat($a, $b){//a == name of owner. b == message
public function send($a, $b){//a == name of owner. b == message
$this->server->chat($a, $b);
return true;
}