Skip to content

Commit

Permalink
maybe?
Browse files Browse the repository at this point in the history
  • Loading branch information
duncathan committed Aug 9, 2023
1 parent 0cef1cd commit b452c82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/open_dread_rando/files/randomizer_powerup.lua
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,8 @@ function RandomizerPowerup._ApplyTunableChanges()
end

function RandomizerPowerup.UpdateWeapons()
Game.AddSF(0.01, RandomizerPowerup._UpdateBeams, "")
Game.AddSF(0.01, RandomizerPowerup._UpdateMissiles, "")
RandomizerPowerup._UpdateBeams()
RandomizerPowerup._UpdateMissiles()
end

function RandomizerPowerup._UpdateBeams()
Expand Down
2 changes: 2 additions & 0 deletions src/open_dread_rando/pickups/split_pickups.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,7 @@ def _patch_split_beams(editor: PatcherEditor) -> list[dict]:
priority=3,
on_fire="OnPowerBeamFire",
charge_sfx="weapons/chargedloop_beam.wav",
color=Color3f(2.0, 0.0, 70.0),
)
solo_wave.set_billboard_group_params.beam = power.set_billboard_group_params.beam
solo_wave.set_billboard_group_params.charge = power.set_billboard_group_params.charge
Expand All @@ -346,6 +347,7 @@ def _patch_split_beams(editor: PatcherEditor) -> list[dict]:
wide_wave.add_primary_gun.params,
inventory_item="ITEM_WEAPON_WIDE_WAVE_BEAM",
priority=5,
color=Color3f(2.0, 0.0, 70.0),
)

plasma_wave = copy.deepcopy(wave)
Expand Down

0 comments on commit b452c82

Please sign in to comment.