#How do I remove the minecraft: from minecraft:stone_sword when I get type.id of a item
1 messages · Page 1 of 1 (latest)
hand.typeId.split(':')[1]
hand.typeId.replace("minecraft:", "");
1 messages · Page 1 of 1 (latest)
console.warn(hand.type.id) this returns minecraft:(item im holding) but i dont want the minecraft: part
hand.typeId.split(':')[1]
hand.typeId.replace("minecraft:", "");