DhApiTerrainDataPoint to string

This commit is contained in:
James Seibel
2025-11-26 13:52:07 -06:00
parent b535be16c0
commit 7c40d96f2e
@@ -98,4 +98,22 @@ public class DhApiTerrainDataPoint
//================//
// base overrides //
//================//
@Override
public String toString()
{
return "[Block:" + this.blockStateWrapper.getSerialString() +
",Biome:" + this.biomeWrapper.getName() +
",TopY:" + this.topYBlockPos +
",BottomY:" + this.bottomYBlockPos +
",BlockLight:" + this.blockLightLevel +
",SkyLight:" + this.skyLightLevel +
"]";
}
} }