mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
9 lines
No EOL
230 B
Lua
9 lines
No EOL
230 B
Lua
function throw_item(xi, yi, xf, yf)
|
|
local dx = xf - xi
|
|
local dy = yf - yi
|
|
CrossCall("ew_potion_mimic_throw", GetUpdatedEntityID(), dx / 8, dy / 8)
|
|
end
|
|
|
|
function item_pickup()
|
|
CrossCall("ew_potion_mimic_pickup")
|
|
end |