mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-22 08:05:33 +00:00
move everything to minecraft subdir, switch to absolute include path
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#include "Minecraft.World/Header Files/stdafx.h"
|
||||
#include "PickupTask.h"
|
||||
|
||||
void PickupTask::onTake(std::shared_ptr<ItemInstance> item,
|
||||
unsigned int invItemCountAnyAux,
|
||||
unsigned int invItemCountThisAux) {
|
||||
if (item->id == m_itemId) {
|
||||
if (m_auxValue == -1 && invItemCountAnyAux >= m_quantity) {
|
||||
bIsCompleted = true;
|
||||
} else if (m_auxValue == item->getAuxValue() &&
|
||||
invItemCountThisAux >= m_quantity) {
|
||||
bIsCompleted = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user