mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-05 01:16:15 +00:00
Fix quadruple-quote key parser bug
This commit is contained in:
@ -427,7 +427,7 @@ class NBT{
|
||||
if($c === ":"){
|
||||
++$offset;
|
||||
break;
|
||||
}elseif($c !== " " and $c !== "\r" and $c !== "\n" and $c !== "\t"){
|
||||
}elseif($c !== " " and $c !== "\r" and $c !== "\n" and $c !== "\t" and $c !== "\""){
|
||||
$key .= $c;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user