mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-05-17 03:08:58 +00:00
Correct line offset in Plugins
This commit is contained in:
parent
033a1673f0
commit
6f8963bdcd
@ -56,7 +56,7 @@ class PluginAPI extends stdClass{
|
|||||||
}else{
|
}else{
|
||||||
$content = file_get_contents($file);
|
$content = file_get_contents($file);
|
||||||
$info = strstr($content, "*/", true);
|
$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
|
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));
|
console("[ERROR] Failed parsing of ".basename($file));
|
||||||
return false;
|
return false;
|
||||||
|
@ -828,12 +828,14 @@ class Player{
|
|||||||
$arr = array();
|
$arr = array();
|
||||||
for($i = $this->counter[1]; $i < $data[0]; ++$i){
|
for($i = $this->counter[1]; $i < $data[0]; ++$i){
|
||||||
$arr[] = $i;
|
$arr[] = $i;
|
||||||
|
++$this->packetStats[1];
|
||||||
}
|
}
|
||||||
$this->send(0xa0, array($arr));
|
$this->send(0xa0, array($arr));
|
||||||
$this->counter[1] = $data[0];
|
$this->counter[1] = $data[0];
|
||||||
}elseif($diff === 1){
|
}elseif($diff === 1){
|
||||||
$this->counter[1] = $data[0];
|
$this->counter[1] = $data[0];
|
||||||
}
|
}
|
||||||
|
++$this->packetStats[0];
|
||||||
$this->send(0xc0, array(array($data[0])));
|
$this->send(0xc0, array(array($data[0])));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user