mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 07:03:16 +00:00
7 lines
No EOL
229 B
Lua
7 lines
No EOL
229 B
Lua
function damage_about_to_be_received( damage, x, y, entity_thats_responsible, critical_hit_chance )
|
|
if(entity_thats_responsible ~= GameGetWorldStateEntity())then
|
|
return 2^-128, 0
|
|
end
|
|
|
|
return damage, 0
|
|
end |