diff options
| author | Garrett Cox <garrettjcox@gmail.com> | 2026-07-25 09:32:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-25 10:32:34 -0400 |
| commit | c03a59dae6cded706dfe51c78dd62fd5c76ec93c (patch) | |
| tree | 1860ec690ffbc4157a3d817a87281a73925963ac /mm/2s2h/Rando/ActorBehavior/ObjTaru.cpp | |
| parent | b1edee5ffd3c732e7d2a31b9fd605157c6911263 (diff) | |
Make randomized checks no longer use custom texture after first obtain (#1810)
Diffstat (limited to 'mm/2s2h/Rando/ActorBehavior/ObjTaru.cpp')
| -rw-r--r-- | mm/2s2h/Rando/ActorBehavior/ObjTaru.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mm/2s2h/Rando/ActorBehavior/ObjTaru.cpp b/mm/2s2h/Rando/ActorBehavior/ObjTaru.cpp index 8d1318358..7c62711a4 100644 --- a/mm/2s2h/Rando/ActorBehavior/ObjTaru.cpp +++ b/mm/2s2h/Rando/ActorBehavior/ObjTaru.cpp @@ -116,7 +116,9 @@ void Rando::ActorBehavior::InitObjTaruBehavior() { } Rando::ActorBehavior::SetObjectRandoCheckId(actor, randoCheckId); - actor->draw = ObjTaru_RandoDraw; + if (!RANDO_SAVE_CHECKS[randoCheckId].obtained) { + actor->draw = ObjTaru_RandoDraw; + } }); COND_VB_SHOULD(VB_BARREL_OR_CRATE_DROP_COLLECTIBLE, IS_RANDO, { |
