mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
9 lines
316 B
Lua
9 lines
316 B
Lua
if not global.score_biter_total_kills then global.score_biter_total_kills = 0 end
|
|
|
|
local function biter_kill_counter(event)
|
|
if event.entity.force.name == "enemy" then
|
|
global.score_biter_total_kills = global.score_biter_total_kills + 1
|
|
end
|
|
end
|
|
|
|
Event.register(defines.events.on_entity_died, biter_kill_counter) |