+ Added Magma Block, Nether Wart Block, Bone Block, End Stone Block + All Beetroot Items + Polar Bear (excluding audio) + / now opens chat for commands
9 lines
169 B
C++
9 lines
169 B
C++
#include "stdafx.h"
|
|
#include "net.minecraft.world.level.h"
|
|
#include "MagmaTile.h"
|
|
|
|
MagmaTile::MagmaTile(int id) : Tile(id, Material::stone)
|
|
{
|
|
setLightEmission(0.2f);
|
|
}
|