mirror of
https://github.com/SpigotMC/BungeeCord.git
synced 2024-11-13 22:05:27 +01:00
#3585: Fix mistake converting certain NBT to JSON in previous commit
This commit is contained in:
parent
f5af11193c
commit
708c5b6254
@ -187,7 +187,7 @@ public final class TagUtil
|
||||
if ( compound.size() == 1 )
|
||||
{
|
||||
SpecificTag first = (SpecificTag) compound.get( "" );
|
||||
if ( first != null )
|
||||
if ( !first.isError() )
|
||||
{
|
||||
jsonList.add( toJson( first ) );
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user