mirror of
https://github.com/Refactorio/RedMew.git
synced 2024-12-12 10:04:40 +02:00
11 lines
348 B
Lua
11 lines
348 B
Lua
local Event = require "utils.event"
|
|
|
|
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.add(defines.events.on_entity_died, biter_kill_counter) |