canary/data/scripts/actions/items/water_pipe.lua
Marco 2c6b196444
chore: adjusting file locations (#2798)
Removing several duplicate scripts and adjusting the logic of others.
Also added missing achievements.
2024-08-19 11:13:05 -03:00

9 lines
233 B
Lua

local waterPipe = Action()
function waterPipe.onUse(player, item, fromPosition, target, toPosition, isHotkey)
item:getPosition():sendMagicEffect(CONST_ME_POFF)
return true
end
waterPipe:id(2974, 2980, 21323)
waterPipe:register()