mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-07-04 03:56:41 +00:00
Remove redundant name from Tag instances.
This commit is contained in:
@ -255,7 +255,7 @@ public class AnvilChunk implements Chunk {
|
||||
return null;
|
||||
}
|
||||
|
||||
return new CompoundTag("", values);
|
||||
return new CompoundTag(values);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -179,7 +179,7 @@ public class OldChunk implements Chunk {
|
||||
if (values == null) {
|
||||
return null;
|
||||
}
|
||||
return new CompoundTag("", values);
|
||||
return new CompoundTag(values);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user