mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 16:51:42 +00:00
Fixed undefined $fullFile on CrashDump
This commit is contained in:
parent
ca59546ace
commit
7a3703d8b1
@ -158,7 +158,7 @@ class CrashDump{
|
||||
$this->addLine("Line: ". $error["line"]);
|
||||
$this->addLine("Type: ". $error["type"]);
|
||||
|
||||
if(strpos($error["file"], "src/pocketmine/") === false and strpos($error["file"], "src/raklib/") === false and file_exists($fullFile)){
|
||||
if(strpos($error["file"], "src/pocketmine/") === false and strpos($error["file"], "src/raklib/") === false and file_exists($error["fullFile"])){
|
||||
$this->addLine();
|
||||
$this->addLine("THIS CRASH WAS CAUSED BY A PLUGIN");
|
||||
$this->data["plugin"] = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user