mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-04 05:16:29 +00:00
fix: unglob std::{min, max}, manual stuff
This commit is contained in:
@@ -22,7 +22,7 @@ std::shared_ptr<ItemInstance> ResultSlot::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