Skip to content

Commit

Permalink
Update HUD for all items recieved
Browse files Browse the repository at this point in the history
  • Loading branch information
dyceron committed Jun 9, 2024
1 parent 2560ec0 commit a87fdd0
Show file tree
Hide file tree
Showing 6 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ function RandomizerMissileTank.OnPickedUp(progression, actorOrName)
end
RandomizerPowerup.OnPickedUp(progression, actorOrName)
RandomizerPowerup.IncreaseMissileCheckValue()
hud.UpdatePlayerInfo(true)
end
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,4 @@ function RandomizerPowerBombTank.OnPickedUp(progression, actorOrName)
end
end
RandomizerPowerup.OnPickedUp(progression, actorOrName)
hud.UpdatePlayerInfo(true)
end
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,4 @@ function RandomizerSuperMissileTank.OnPickedUp(progression, actorOrName)
end
end
RandomizerPowerup.OnPickedUp(progression, actorOrName)
hud.UpdatePlayerInfo(true)
end
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,4 @@ function T__name__T.OnPickedUp(actorOrName)
Game.PlayMusicStream(1, TEMPLATE("sound"), -1, -1, 0, 0, 0, 0)
Scenario.QueueAsyncPopup(TEMPLATE("caption"))
TEMPLATE("parent").OnPickedUp(resources, actorOrName)
hud.UpdatePlayerInfo(true)
end
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ function RandomizerPowerup.OnPickedUp(resources, actorOrName)
end
RandomizerPowerup.IncrementInventoryIndex()
RL.UpdateRDVClient(false)
hud.UpdatePlayerInfo(true)
return granted
end

Expand Down
1 change: 0 additions & 1 deletion src/open_samus_returns_rando/multiworld_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ def get_lua_for_item(progression: list[list[dict[str, str | int]]]) -> str:
function MultiworldPickup.OnPickedUp(progression, actorOrName)
RandomizerPowerup.OnPickedUp(progression, actorOrName)
hud.UpdatePlayerInfo(true)
end
"""

Expand Down

0 comments on commit a87fdd0

Please sign in to comment.