mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-05-23 11:55:29 +00:00
fix: unglob std::{min, max}, manual stuff
This commit is contained in:
@@ -286,7 +286,7 @@ void BasicTree::limb(int *start, int *end, int material)
|
||||
int dir = TreeTile::FACING_Y;
|
||||
int xdiff = abs(coordinate[0] - start[0]);
|
||||
int zdiff = abs(coordinate[2] - start[2]);
|
||||
int maxdiff = max(xdiff, zdiff);
|
||||
int maxdiff = std::max(xdiff, zdiff);
|
||||
|
||||
if (maxdiff > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user