Correct line offset in Plugins

This commit is contained in:
Shoghi Cervantes 2013-06-04 10:58:11 +02:00
parent 033a1673f0
commit 6f8963bdcd
2 changed files with 4 additions and 2 deletions

View File

@ -56,7 +56,7 @@ class PluginAPI extends stdClass{
}else{
$content = file_get_contents($file);
$info = strstr($content, "*/", true);
$content = substr(strstr($content, "*/"),2);
$content = str_repeat(PHP_EOL, substr_count($info, "\n")).substr(strstr($content, "*/"),2);
if(preg_match_all('#([a-zA-Z0-9\-_]*)=([^\r\n]*)#u', $info, $matches) == 0){ //false or 0 matches
console("[ERROR] Failed parsing of ".basename($file));
return false;

View File

@ -828,12 +828,14 @@ class Player{
$arr = array();
for($i = $this->counter[1]; $i < $data[0]; ++$i){
$arr[] = $i;
++$this->packetStats[1];
}
$this->send(0xa0, array($arr));
$this->counter[1] = $data[0];
}elseif($diff === 1){
$this->counter[1] = $data[0];
$this->counter[1] = $data[0];
}
++$this->packetStats[0];
$this->send(0xc0, array(array($data[0])));
}