(String key, NBTBase value)
| 912 | } |
| 913 | |
| 914 | public void setTagInfo(String key, NBTBase value) |
| 915 | { |
| 916 | if (this.stackTagCompound == null) |
| 917 | { |
| 918 | this.setTagCompound(new NBTTagCompound()); |
| 919 | } |
| 920 | |
| 921 | this.stackTagCompound.setTag(key, value); |
| 922 | } |
| 923 | |
| 924 | public boolean canEditBlocks() |
| 925 | { |
no test coverage detected