(Object aTag, long aValue)
| 1923 | } |
| 1924 | |
| 1925 | public static NBTTagCompound makeLong(Object aTag, long aValue) { |
| 1926 | NBTTagCompound aNBT = make(); |
| 1927 | setNumber(aNBT, aTag.toString(), aValue); |
| 1928 | return aNBT; |
| 1929 | } |
| 1930 | public static NBTTagCompound makeLong(NBTTagCompound aNBT, Object aTag, long aValue) { |
| 1931 | if (aNBT == null) aNBT = make(); |
| 1932 | setNumber(aNBT, aTag.toString(), aValue); |
no test coverage detected