2026-03-01 12:16:08 +08:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
#include "net.minecraft.world.level.h"
|
|
|
|
|
#include "net.minecraft.world.entity.player.h"
|
|
|
|
|
#include "net.minecraft.world.entity.projectile.h"
|
|
|
|
|
#include "EnderpearlItem.h"
|
|
|
|
|
#include "SoundTypes.h"
|
|
|
|
|
|
|
|
|
|
EnderpearlItem::EnderpearlItem(int id) : Item(id)
|
|
|
|
|
{
|
2026-03-03 03:04:10 +08:00
|
|
|
maxStackSize = 16;
|
2026-03-01 12:16:08 +08:00
|
|
|
}
|
|
|
|
|
|
2026-03-03 03:04:10 +08:00
|
|
|
bool EnderpearlItem::TestUse(shared_ptr<ItemInstance> itemInstance, Level *level, shared_ptr<Player> player)
|
2026-03-01 12:16:08 +08:00
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-02 17:37:16 +07:00
|
|
|
shared_ptr<ItemInstance> EnderpearlItem::use(shared_ptr<ItemInstance> instance, Level *level, shared_ptr<Player> player)
|
2026-03-01 12:16:08 +08:00
|
|
|
{
|
|
|
|
|
// 4J-PB - Not sure why this was disabled for creative mode, so commenting out
|
|
|
|
|
//if (player->abilities.instabuild) return instance;
|
|
|
|
|
if (player->riding != NULL) return instance;
|
|
|
|
|
if (!player->abilities.instabuild)
|
|
|
|
|
{
|
|
|
|
|
instance->count--;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-03 03:04:10 +08:00
|
|
|
level->playEntitySound(player, eSoundType_RANDOM_BOW, 0.5f, 0.4f / (random->nextFloat() * 0.4f + 0.8f));
|
2026-03-02 17:37:16 +07:00
|
|
|
if (!level->isClientSide)
|
2026-03-01 12:16:08 +08:00
|
|
|
{
|
2026-03-02 17:37:16 +07:00
|
|
|
level->addEntity( shared_ptr<ThrownEnderpearl>( new ThrownEnderpearl(level, player) ) );
|
2026-03-01 12:16:08 +08:00
|
|
|
}
|
|
|
|
|
return instance;
|
|
|
|
|
}
|