1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2025-01-18 03:21:47 +02:00

Remove all-tech command

This commit is contained in:
Matthew Heguy 2019-02-28 14:48:08 -05:00
parent 77df5209fd
commit 3410fa2dd0

View File

@ -71,12 +71,6 @@ local function toggle_cheat_mode(_, player)
Game.player_print('Cheat mode set to ' .. tostring(player.cheat_mode))
end
--- Enables all researches for a player's force
local function all_tech(_, player)
player.force.research_all_technologies()
Game.player_print('Your force has been granted all technologies')
end
--- Promote someone to regular
local function add_regular(args)
local target_name = args['player']
@ -403,17 +397,6 @@ Command.add(
toggle_cheat_mode
)
Command.add(
'all-tech',
{
description = 'researches all technologies',
required_rank = Ranks.admin,
debug_only = true,
cheat_only = true
},
all_tech
)
Command.add(
'regular',
{