/**
* creates a NBT list from the array of doubles passed to this function
*/
protected NBTTagList newDoubleNBTList(double ... p_70087_1_)
{
NBTTagList nbttaglist = new NBTTagList();
double[] adouble = p_70087_1_;
int i = p_70087_1_.length;
for (int j = 0; j < i; ++j)
{
double d1 = adouble[j];
nbttaglist.appendTag(new NBTTagDouble(d1));
}
return nbttaglist;
}
Entity.java 文件源码
java
阅读 25
收藏 0
点赞 0
评论 0
项目:TickDynamic
作者:
评论列表
文章目录