1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-12 10:04:40 +02:00
RedMew/player_colors.lua
Matthew bac8b0bc87 Split colors resources from colors code & catchup on donators (#288)
* Split colors resources from colors code

* Switch back to colors
2018-11-11 03:43:11 +01:00

21 lines
579 B
Lua

local Event = require 'utils.event'
local Game = require 'utils.game'
local player_colors = require 'resources.player_colors'
Event.add(
defines.events.on_player_created,
function(event)
local player = Game.get_player_by_index(event.player_index)
if not player or not player.valid then
return
end
local color_data = player_colors[player.name]
if not color_data then
return
end
player.color = color_data.color
player.chat_color = color_data.chat_color or color_data.color
end
)