mirror of
https://github.com/danbulant/flying-squid
synced 2026-06-20 06:51:42 +00:00
11 lines
213 B
JavaScript
11 lines
213 B
JavaScript
module.exports=inject;
|
|
|
|
function inject(serv, player)
|
|
{
|
|
heldItemSlot=0;
|
|
player._client.on("held_item_slot", function (packet) {
|
|
heldItemSlot = packet.slotId;
|
|
});
|
|
|
|
player.heldItemSlot = heldItemSlot;
|
|
}
|