Returns a new NBTTagList filled with the specified floats
(float... numbers)
| 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 | { |