1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-01-06 00:23:49 +02:00
ComfyFactorio/modules/market_friendly_fire_protection.lua
2021-03-24 20:14:55 +01:00

17 lines
425 B
Lua

local Event = require 'utils.event'
local function on_entity_damaged(event)
if event.entity.name ~= 'market' then
return false
end
if event.cause then
if event.cause.force.name == 'enemy' then
return false
end
end
event.entity.health = event.entity.health + event.final_damage_amount
return true
end
Event.add(defines.events.on_entity_damaged, on_entity_damaged)