1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00

Merge branch '0.17.35_fix' of https://github.com/SimonFlapse/RedMew into 0.17.35_fix

This commit is contained in:
grilledham 2019-05-02 17:08:25 +01:00
commit 1fa07225dd
2 changed files with 2 additions and 2 deletions

View File

@ -165,7 +165,7 @@ local function preserve_bot(event)
local owner = cell.owner
--checks if construction-robot is part of a mobile logistic network
if owner.name ~= 'player' then
if owner.name ~= 'character' then
entity.minable = true
return
end

View File

@ -731,7 +731,7 @@ Event.add(
message[#message + 1] = ' was killed by '
local name = cause.name
if name == 'player' then
if name == 'character' then
name = cause.player.name
end