Drops now have starting speed, correct entity motion at spawn

This commit is contained in:
Shoghi Cervantes
2013-05-30 18:55:50 +02:00
parent 09efcec605
commit fc02572065
4 changed files with 13 additions and 11 deletions

View File

@ -298,13 +298,13 @@ class BanAPI{
}
public function kick($username, $reason = "No Reason"){
$this->commandHandler("kick", array($username, $reason));
$this->commandHandler("kick", array($username, $reason), "console", "");
}
public function reload(){
$this->commandHandler("ban", array("reload"));
$this->commandHandler("banip", array("reload"));
$this->commandHandler("whitelist", array("reload"));
$this->commandHandler("ban", array("reload"), "console", "");
$this->commandHandler("banip", array("reload"), "console", "");
$this->commandHandler("whitelist", array("reload"), "console", "");
}
public function isIPBanned($ip){