Shuffle cleanup (#5222)

* Shuffle cleanup

* Grass can be cut with Goron's Bracelet
* Gohma's grass can be cut without defeating Gohma

* more whitespace
This commit is contained in:
Philip Dubé 2025-03-27 06:48:37 +00:00 committed by GitHub
commit b417b87d1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 78 additions and 78 deletions

View file

@ -1079,7 +1079,7 @@ namespace Rando {
}
bool Logic::CanCutShrubs(){
return CanUse(RG_KOKIRI_SWORD) || CanUse(RG_BOOMERANG) || HasExplosives() || CanUse(RG_MASTER_SWORD) || CanUse(RG_MEGATON_HAMMER) || CanUse(RG_BIGGORON_SWORD);
return CanUse(RG_KOKIRI_SWORD) || CanUse(RG_BOOMERANG) || HasExplosives() || CanUse(RG_MASTER_SWORD) || CanUse(RG_MEGATON_HAMMER) || CanUse(RG_BIGGORON_SWORD) || HasItem(RG_GORONS_BRACELET);
}
bool Logic::CanStunDeku(){