diff --git a/src/open_samus_returns_rando/files/schema.json b/src/open_samus_returns_rando/files/schema.json index 63caf09..0985feb 100644 --- a/src/open_samus_returns_rando/files/schema.json +++ b/src/open_samus_returns_rando/files/schema.json @@ -180,9 +180,9 @@ "description": "Remove the Power Bomb weakness from Beam Doors to make Power Bombs less overpowered.", "default": true }, - "plant_buff": { + "beam_burst_buff": { "type": "boolean", - "description": "Remove the Power Bomb weakness from Blobthowers/Blockingplants to make Power Bombs less overpowered.", + "description": "Remove the Power Bomb weakness from Blobthowers/Steel Orbs to make Power Bombs less overpowered.", "default": false }, "remove_elevator_grapple_blocks": { diff --git a/src/open_samus_returns_rando/specific_patches/game_patches.py b/src/open_samus_returns_rando/specific_patches/game_patches.py index 539fb4c..5c8a66c 100644 --- a/src/open_samus_returns_rando/specific_patches/game_patches.py +++ b/src/open_samus_returns_rando/specific_patches/game_patches.py @@ -45,8 +45,8 @@ def _remove_pb_weaknesses(editor: PatcherEditor, configuration: dict): if func_s.params.Param1.value: func_s.params.Param1.value = "SPAZER_BEAM" - # Blobthrowers/Blockingplants - if configuration["plant_buff"]: + # Blobthrowers/Steel Orbs + if configuration["beam_burst_buff"]: PLANT_FILES = [ "actors/characters/blobthrower/charclasses/blobthrower.bmsad", "actors/props/blockingplant/charclasses/blockingplant.bmsad", diff --git a/tests/test_files/starter_preset_patcher.json b/tests/test_files/starter_preset_patcher.json index c3b8344..e114ffe 100644 --- a/tests/test_files/starter_preset_patcher.json +++ b/tests/test_files/starter_preset_patcher.json @@ -4026,7 +4026,7 @@ "game_patches": { "charge_door_buff": true, "beam_door_buff": true, - "plant_buff": true, + "beam_burst_buff": true, "nerf_super_missiles": false, "remove_elevator_grapple_blocks": true, "remove_grapple_block_area3_interior_shortcut": true,