Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
435 B · 22 lines
C++
at master
12345678910111213141516171819202122#include "stdafx.h"#include "net.minecraft.world.level.h"#include "LockedChestTile.h"
LockedChestTile::LockedChestTile(int id) : Tile(id, Material::wood){}
bool LockedChestTile::mayPlace(Level *level, int x, int y, int z){ return true;}
void LockedChestTile::tick(Level *level, int x, int y, int z, Random *random){ level->removeTile(x, y, z);}
void LockedChestTile::registerIcons(IconRegister *iconRegister){ // None}