1
0
mirror of https://github.com/Refactorio/RedMew.git synced 2024-12-10 10:00:00 +02:00

Remove /dc command, use /sc instead.

This commit is contained in:
James Gillham 2020-12-28 22:37:20 +00:00
parent a93eb2d4ea
commit d33392b1cf
2 changed files with 1 additions and 46 deletions

View File

@ -8,8 +8,6 @@ local Command = require 'utils.command'
local Color = require 'resources.color_presets'
local Ranks = require 'resources.ranks'
local loadstring = loadstring
--- A table of players with tpmode turned on
local tp_players = {}
@ -32,36 +30,6 @@ local function admin_chat(args, player)
Utils.print_admins(args.msg, player)
end
--- Runs a command silently. Traps and prints errors for the player/server
local function silent_command(args, player)
local p
if player then
p = player.print
else
p = print
end
local func, err = loadstring(args.str)
if not func then
p(err)
return
end
local _, err2 = pcall(func)
if err2 then
local i = err2:find('\n')
if i then
p(err2:sub(1, i))
return
end
i = err2:find('%s')
if i then
p(err2:sub(i + 1))
end
end
end
--- Toggles cheat mode for a player
local function toggle_cheat_mode(_, player)
player.cheat_mode = not player.cheat_mode
@ -343,18 +311,6 @@ Command.add(
admin_chat
)
Command.add(
'dc',
{
description = {'command_description.dc'},
arguments = {'str'},
required_rank = Ranks.admin,
capture_excess_arguments = true,
allowed_by_server = true
},
silent_command
)
Command.add(
'hax',
{

View File

@ -21,8 +21,7 @@ local pcall = pcall
local Command = {}
local deprecated_command_alternatives = {
['silent-command'] = 'dc',
['sc'] = 'dc',
['dc'] = 'sc',
['tpplayer'] = 'tp <player>',
['tppos'] = 'tp',
['tpmode'] = 'tp mode',