(Object aTag, boolean aValue)
| 1879 | } |
| 1880 | |
| 1881 | public static NBTTagCompound makeBool(Object aTag, boolean aValue) { |
| 1882 | NBTTagCompound aNBT = make(); |
| 1883 | aNBT.setBoolean(aTag.toString(), aValue); |
| 1884 | return aNBT; |
| 1885 | } |
| 1886 | public static NBTTagCompound makeBool(NBTTagCompound aNBT, Object aTag, boolean aValue) { |
| 1887 | if (aNBT == null) aNBT = make(); |
| 1888 | aNBT.setBoolean(aTag.toString(), aValue); |
no test coverage detected