mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-19 06:21:08 +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,
|
||||
"value": {
|
||||
blockId: entity.itemId,
|
||||
itemDamage: entity.itemDamage
|
||||
itemDamage: entity.itemDamage,
|
||||
itemCount:1
|
||||
}
|
||||
}]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue