mirror of
https://github.com/danbulant/flying-squid
synced 2026-07-07 20:20:50 +00:00
fix block drop in node 0.10 : itemCount is not optional
This commit is contained in:
parent
da2457eae4
commit
f4a168cffb
1 changed files with 2 additions and 1 deletions
|
|
@ -61,7 +61,8 @@ module.exports.player=function(player,serv) {
|
||||||
"type": 5,
|
"type": 5,
|
||||||
"value": {
|
"value": {
|
||||||
blockId: entity.itemId,
|
blockId: entity.itemId,
|
||||||
itemDamage: entity.itemDamage
|
itemDamage: entity.itemDamage,
|
||||||
|
itemCount:1
|
||||||
}
|
}
|
||||||
}]);
|
}]);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue