mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-27 14:25:44 +00:00
fix: unglob everything else and make it build
This commit is contained in:
@@ -1586,7 +1586,7 @@ int IUIScene_AbstractContainerMenu::GetEmptyStackSpace(Slot *slot)
|
||||
if ( item->isStackable() )
|
||||
{
|
||||
int iCount = item->GetCount();
|
||||
int iMaxStackSize = min(item->getMaxStackSize(), slot->getMaxStackSize() );
|
||||
int iMaxStackSize = std::min(item->getMaxStackSize(), slot->getMaxStackSize() );
|
||||
|
||||
iResult = iMaxStackSize - iCount;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user