mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-04-22 08:44:01 +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 === ":"){
|
||||
++$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;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user