mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-14 12:01:12 +00:00
15 lines
No EOL
313 B
JavaScript
15 lines
No EOL
313 B
JavaScript
module.exports=inject;
|
|
|
|
function inject(serv,player)
|
|
{
|
|
function changeBlock(position,blockType)
|
|
{
|
|
player._writeOthers("block_change",{
|
|
location:position,
|
|
type:blockType<<4
|
|
});
|
|
serv.world.setBlockType(position.x,position.y,position.z,blockType);
|
|
}
|
|
|
|
player.changeBlock=changeBlock;
|
|
} |