Fix quadruple-quote key parser bug

This commit is contained in:
Dylan K. Taylor 2016-10-26 22:18:06 +01:00
parent 8053066ac0
commit bb9ab525b6

View File

@ -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;
} }
} }