1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-30 04:30:58 +02:00

Hotfix for broken GUI, translation parameter count

This commit is contained in:
Lynn 2019-06-04 10:56:18 +02:00 committed by GitHub
parent 99890acdc2
commit 6db5901e99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -190,7 +190,8 @@ local Public = {}
-- Returns a dictionary of cause_name -> count
function Public.get_all_death_causes_by_player(player_index)
return player_death_causes[player_index] or {}
--return player_death_causes[player_index] or {}
return {}
end
return Public