mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
11 lines
No EOL
412 B
Lua
11 lines
No EOL
412 B
Lua
dofile_once("data/scripts/lib/utilities.lua")
|
|
dofile_once("mods/quant.ew/files/resource/shoot_projectile_fix.lua")
|
|
|
|
local entity_id = GetUpdatedEntityID()
|
|
local pos_x, pos_y = EntityGetTransform( entity_id )
|
|
|
|
local parent_id = EntityGetParent( entity_id )
|
|
|
|
if (parent_id ~= NULL_ENTITY) then
|
|
shoot_projectile( parent_id, "data/entities/misc/essences/fire_explosion.xml", pos_x, pos_y, 0, 0 )
|
|
end |