* try to resolve merge conflict
* feat: TU19 (Dec 2014) Features & Content (#32)
* December 2014 files
* Working release build
* Fix compilation issues
* Add sound to Windows64Media
* Add DLC content and force Tutorial DLC
* Revert "Add DLC content and force Tutorial DLC"
This reverts commit 97a4399472.
* Disable broken light packing
* Disable breakpoint during DLC texture map load
Allows DLC loading but the DLC textures are still broken
* Fix post build not working
* ...
* fix vs2022 build
* fix cmake build
---------
Co-authored-by: Loki <lokirautio@gmail.com>
49 lines
1.1 KiB
C++
49 lines
1.1 KiB
C++
#include "stdafx.h"
|
|
#include "net.minecraft.world.level.h"
|
|
#include "net.minecraft.world.level.tile.entity.h"
|
|
#include "MobSpawnerTile.h"
|
|
|
|
MobSpawnerTile::MobSpawnerTile(int id) : BaseEntityTile(id, Material::stone, isSolidRender() )
|
|
{
|
|
}
|
|
|
|
shared_ptr<TileEntity> MobSpawnerTile::newTileEntity(Level *level)
|
|
{
|
|
return shared_ptr<MobSpawnerTileEntity>( new MobSpawnerTileEntity() );
|
|
}
|
|
|
|
int MobSpawnerTile::getResource(int data, Random *random, int playerBonusLevel)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
int MobSpawnerTile::getResourceCount(Random *random)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bool MobSpawnerTile::isSolidRender(bool isServerLevel)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool MobSpawnerTile::blocksLight()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void MobSpawnerTile::spawnResources(Level *level, int x, int y, int z, int data, float odds, int playerBonusLevel)
|
|
{
|
|
Tile::spawnResources(level, x, y, z, data, odds, playerBonusLevel);
|
|
|
|
// also spawn experience if the block is broken
|
|
{
|
|
int magicCount = 15 + level->random->nextInt(15) + level->random->nextInt(15);
|
|
popExperience(level, x, y, z, magicCount);
|
|
}
|
|
}
|
|
|
|
int MobSpawnerTile::cloneTileId(Level *level, int x, int y, int z)
|
|
{
|
|
return 0;
|
|
} |