MCPcopy Create free account
hub / github.com/DGVPSH/SlackOpen / newFloatNBTList

Method newFloatNBTList

src/main/java/net/minecraft/entity/Entity.java:1837–1847  ·  view source on GitHub ↗

Returns a new NBTTagList filled with the specified floats

(float... numbers)

Source from the content-addressed store, hash-verified

1835 * Returns a new NBTTagList filled with the specified floats
1836 */
1837 protected NBTTagList newFloatNBTList(float... numbers)
1838 {
1839 NBTTagList nbttaglist = new NBTTagList();
1840
1841 for (float f : numbers)
1842 {
1843 nbttaglist.appendTag(new NBTTagFloat(f));
1844 }
1845
1846 return nbttaglist;
1847 }
1848
1849 public EntityItem dropItem(Item itemIn, int size)
1850 {

Callers 1

writeToNBTMethod · 0.95

Calls 1

appendTagMethod · 0.95

Tested by

no test coverage detected