From 771fd4c79bf968b5ca084206efc6c5700d73121f Mon Sep 17 00:00:00 2001 From: deathcap Date: Tue, 29 Apr 2014 20:58:19 -0700 Subject: [PATCH] Register quarry block --- quarry.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/quarry.js b/quarry.js index ac7aff5..3eabf7c 100644 --- a/quarry.js +++ b/quarry.js @@ -15,8 +15,10 @@ function QuarryPlugin(game, opts) { } QuarryPlugin.prototype.enable = function() { + this.registry.registerBlock('quarry', {texture: 'furnace_top'/* TODO */}); }; QuarryPlugin.prototype.disable = function() { + // TODO: unregister block };