Fix RenderDataPointUtil.toString() ARGB order

This commit is contained in:
James Seibel
2024-07-21 07:19:21 -05:00
parent 568ff40df6
commit de7d22766a
@@ -245,8 +245,8 @@ public class RenderDataPointUtil
" Y-:" + getYMin(dataPoint) +
" argb:" + getAlpha(dataPoint) + " " +
getRed(dataPoint) + " " +
getBlue(dataPoint) + " " +
getGreen(dataPoint) +
getGreen(dataPoint) + " " +
getBlue(dataPoint) +
" BL:" + getLightBlock(dataPoint) +
" SL:" + getLightSky(dataPoint) +
" BID:" + getBlockMaterialId(dataPoint);