#Make a vanilla block emit light
5 messages · Page 1 of 1 (latest)
Once your ticket has been resolved, please close it with </ticket close:1054771505520717835> command!
@queen lark startup script:
BlockEvents.modification(event => {
event.modify('minecraft:cactus', block => {
block.lightEmission = 15
})
})
That will algo work to remove light? Example:
BlockEvents.modification(event => {
event.modify('minecraft:nether_portal', block =>
{
block.lightEmission = 0
})
})
it should