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

added missing UserGroups require

This commit is contained in:
grilledham 2018-06-04 16:55:59 +01:00
parent 1520f95738
commit 1c0dfda99c

View File

@ -4,6 +4,7 @@
---------------------------------------------------------------------------------------------------------------------------------------- ----------------------------------------------------------------------------------------------------------------------------------------
local Event = require "utils.event" local Event = require "utils.event"
local UserGroups = require "user_groups"
local function create_tasklist_gui(event) local function create_tasklist_gui(event)
local player = game.players[event.player_index] local player = game.players[event.player_index]
@ -63,7 +64,7 @@ local function tasklist_show(player)
global.tasklist_panel_creation_time[player.index] = game.tick global.tasklist_panel_creation_time[player.index] = game.tick
if is_regular( player.name ) or is_mod( player.name ) or player.admin then if player.admin or UserGroups.is_regular(player.name) then
tasklist_panel_button_table.add { type = "button", caption = "New Tasks", name = "new_tasklist_assembler_button" } tasklist_panel_button_table.add { type = "button", caption = "New Tasks", name = "new_tasklist_assembler_button" }
tasklist_panel_button_table.new_tasklist_assembler_button.style.font = "default-bold" tasklist_panel_button_table.new_tasklist_assembler_button.style.font = "default-bold"
tasklist_panel_button_table.new_tasklist_assembler_button.style.minimal_height = 38 tasklist_panel_button_table.new_tasklist_assembler_button.style.minimal_height = 38