1
0
mirror of https://github.com/ComfyFactory/ComfyFactorio.git synced 2025-02-09 13:37:02 +02:00

pirates: remove deprecated permissions

This commit is contained in:
danielmartin0 2024-09-25 16:10:47 +01:00 committed by Gerkiz
parent a092463552
commit bb1b301efd

View File

@ -50,8 +50,6 @@ local function set_restricted_permissions(group)
group.set_allows_action(defines.input_action.build_terrain, false)
group.set_allows_action(defines.input_action.begin_mining, false)
group.set_allows_action(defines.input_action.begin_mining_terrain, false)
group.set_allows_action(defines.input_action.activate_copy, false)
group.set_allows_action(defines.input_action.activate_cut, false)
group.set_allows_action(defines.input_action.activate_paste, false)
group.set_allows_action(defines.input_action.upgrade, false)
group.set_allows_action(defines.input_action.deconstruct, false)
@ -165,9 +163,11 @@ local function add_player_to_permission_group(player, group_override)
local gulag = game.permissions.get_group('gulag')
local tbl = gulag and gulag.players
for i = 1, #tbl do
if tbl[i].index == player.index then
return
if tbl then
for i = 1, #tbl do
if tbl[i].index == player.index then
return
end
end
end