2019-01-16 17:16:38 -05:00

13 lines
229 B
Lua

function onUse(player, item, fromPosition, target, toPosition)
if not target:isItem() then
return false
end
if target:getId() == 3594 then
target:transform(2977, 1)
target:decay()
return true
end
return false
end