flying-squid/examples/plugins/noplanks/index.js
2015-09-06 12:57:34 -07:00

13 lines
No EOL
355 B
JavaScript

module.exports=inject;
function inject(serv, player, self) {
serv.broadcast('Hey ' + player.username + '!');
player.setGameMode(1);
player.on('block_place_cancel', function(e, cancel) { // Users can't place any wood planks!
if (e.id == '5') {
cancel();
player.sendBlock(e.position, 0);
}
});
}