aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.World/PoweredMetalTile.cpp
blob: 7193897501c6db779961990d57f0718086b4cc13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "stdafx.h"
#include "net.minecraft.world.level.redstone.h"
#include "PoweredMetalTile.h"

PoweredMetalTile::PoweredMetalTile(int id) : MetalTile(id)
{
}

bool PoweredMetalTile::isSignalSource()
{
	return true;
}

int PoweredMetalTile::getSignal(LevelSource *level, int x, int y, int z, int dir)
{
	return Redstone::SIGNAL_MAX;
}