the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
1#include "stdafx.h"
2#include "net.minecraft.world.level.redstone.h"
3#include "PoweredMetalTile.h"
4
5PoweredMetalTile::PoweredMetalTile(int id) : MetalTile(id)
6{
7}
8
9bool PoweredMetalTile::isSignalSource()
10{
11 return true;
12}
13
14int PoweredMetalTile::getSignal(LevelSource *level, int x, int y, int z, int dir)
15{
16 return Redstone::SIGNAL_MAX;
17}