mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
8 lines
No EOL
245 B
Lua
8 lines
No EOL
245 B
Lua
local old = GameCreateSpriteForXFrames
|
|
function GameCreateSpriteForXFrames(filename, ...)
|
|
if filename == "data/particles/spatial_map_player.png" then
|
|
CrossCall("ew_place_player_on_map")
|
|
else
|
|
old(filename, ...)
|
|
end
|
|
end |