mirror of
https://github.com/IntQuant/noita_entangled_worlds.git
synced 2025-10-19 15:13:16 +00:00
7 lines
224 B
Lua
7 lines
224 B
Lua
![]() |
function damage_about_to_be_received( damage, x, y, entity_thats_responsible, critical_hit_chance )
|
||
|
if(entity_thats_responsible ~= GameGetWorldStateEntity())then
|
||
|
return 0, 0
|
||
|
end
|
||
|
|
||
|
return damage, 0
|
||
|
end
|