addCommandHandler('redo',
function( player, command, value )
if isPlayerInACLGroup(player, g_GameOptions.admingroup) then
local currentMap = exports.mapmanager:getRunningGamemodeMap()
if currentMap then
outputChatBox("#00BAFF[REDO] #FFFFFFMap restarted by " .. getPlayerNametagText(player), g_Root, 0, 240, 0, true)
if not exports.mapmanager:changeGamemodeMap (currentMap, nil, true) then
problemChangingMap()
end
else
outputRace("You can't restart the map because no map is running", player)
end
else
outputRace("You are not an Admin", player)
end
end
)