diff --git a/modoptions.lua b/modoptions.lua index c0ba5b788fc..8d8936286fb 100644 --- a/modoptions.lua +++ b/modoptions.lua @@ -1262,16 +1262,6 @@ local options = { def = false, }, - { - key = "accuratelasers", - name = "Accurate Lasers", - desc = "Removes inaccuracy vs moving units from all laser weapons as a proposed solution to overpowered scoutspam", - type = "bool", - hidden = true, - section = "options_experimental", - def = false, - }, - { key = "lategame_rebalance", name = "Lategame Rebalance", @@ -1338,7 +1328,7 @@ local options = { name = "Proposed Unit Reworks", desc = "Modoption used to test and balance unit reworks that are being considered for the base game.", type = "bool", - --hidden = true, + hidden = true, section = "options_experimental", def = false, }, diff --git a/unitbasedefs/proposed_unit_reworks_defs.lua b/unitbasedefs/proposed_unit_reworks_defs.lua index ece92afbb65..d139f76d495 100644 --- a/unitbasedefs/proposed_unit_reworks_defs.lua +++ b/unitbasedefs/proposed_unit_reworks_defs.lua @@ -1,13 +1,5 @@ local function proposed_unit_reworksTweaks(name, uDef) - if name == "armpw" then - uDef.metalcost = 60 - end - if name == "corak" then - uDef.metalcost = 45 - uDef.weapondefs.gator_laser.range = 220 - end - return uDef end