Fixed errorous super call
This commit is contained in:
parent
c23cc19271
commit
3845ba49c4
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ object TileTurntable
|
||||||
class TileTurntable extends TileBlock(Material.piston) with IRotatable
|
class TileTurntable extends TileBlock(Material.piston) with IRotatable
|
||||||
{
|
{
|
||||||
textureName = "turntable_side"
|
textureName = "turntable_side"
|
||||||
super.tickRandomly = true
|
tickRandomly = true
|
||||||
rotationMask = Integer.parseInt("111111", 2).toByte
|
rotationMask = Integer.parseInt("111111", 2).toByte
|
||||||
|
|
||||||
override def tickRate(par1World: World): Int =
|
override def tickRate(par1World: World): Int =
|
||||||
|
|
Loading…
Reference in a new issue