mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-08 08:56:22 +00:00
Missing a check in nbtutil
This commit is contained in:
parent
e26a29580a
commit
15b1b2891f
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ namespace NBTUtil.Ops
|
|||
{
|
||||
if (!(dataNode is TagDataNode) || !dataNode.CanEditNode)
|
||||
return false;
|
||||
if (dataNode is TagByteArrayDataNode || dataNode is TagIntArrayDataNode || dataNode is TagShortArrayDataNode)
|
||||
if (dataNode is TagByteArrayDataNode || dataNode is TagIntArrayDataNode || dataNode is TagShortArrayDataNode || dataNode is TagLongArrayDataNode)
|
||||
return false;
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue