(Object aTag, short aValue)
| 1901 | } |
| 1902 | |
| 1903 | public static NBTTagCompound makeShort(Object aTag, short aValue) { |
| 1904 | NBTTagCompound aNBT = make(); |
| 1905 | aNBT.setShort(aTag.toString(), aValue); |
| 1906 | return aNBT; |
| 1907 | } |
| 1908 | public static NBTTagCompound makeShort(NBTTagCompound aNBT, Object aTag, short aValue) { |
| 1909 | if (aNBT == null) aNBT = make(); |
| 1910 | aNBT.setShort(aTag.toString(), aValue); |
no test coverage detected