You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
importnet.minecraftforge.event.world.BlockEvent.BreakEventimportnet.minecraftforge.event.world.BlockEventimportnet.minecraft.util.text.TextComponentStringdef restrictPlacableBlocks = [
block("minecraft:furnace")
]
event_manager.listen(EventPriority.HIGHEST) { BlockEvent.PlaceEventevent->if (event.getState().getBlock() in restrictPlacableBlocks) {
def restrictText =newTextComponentString("${textformat('BOLD')}${event.getState().getBlock().getLocalizedName()}${textformat('GREEN')} не может быть установлен в этом мире")
event.setCanceled(true)
event.player.sendMessage(restrictText)
}
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: