mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-07-12 19:58:25 +00:00
fix: unglob std::{min, max}, manual stuff
This commit is contained in:
@@ -24,7 +24,7 @@ std::shared_ptr<ItemInstance> FurnaceResultSlot::remove(int c)
|
||||
{
|
||||
if (hasItem())
|
||||
{
|
||||
removeCount += min(c, getItem()->count);
|
||||
removeCount += std::min(c, getItem()->count);
|
||||
}
|
||||
return Slot::remove(c);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user