mirror of
https://github.com/ErikasKontenis/SabrehavenServer.git
synced 2025-04-30 17:49:20 +02:00
13 lines
229 B
Lua
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
|