mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-30 23:29:54 +00:00
Fix quadruple-quote key parser bug
This commit is contained in:
parent
8053066ac0
commit
bb9ab525b6
@ -427,7 +427,7 @@ class NBT{
|
|||||||
if($c === ":"){
|
if($c === ":"){
|
||||||
++$offset;
|
++$offset;
|
||||||
break;
|
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;
|
$key .= $c;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user