@bananapus/721-hook-v6 0.0.52 → 0.0.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -958,9 +958,8 @@ contract JB721TiersHookStore is IJB721TiersHookStore {
|
|
|
958
958
|
revert JB721TiersHookStore_VotingUnitsNotAllowed({tierId: tierId});
|
|
959
959
|
}
|
|
960
960
|
|
|
961
|
-
// Make sure the new tier doesn't have a reserve frequency if the 721 contract's flags don't allow it to
|
|
962
|
-
|
|
963
|
-
if ((flags.noNewTiersWithReserves || tierToAdd.flags.allowOwnerMint) && tierToAdd.reserveFrequency != 0) {
|
|
961
|
+
// Make sure the new tier doesn't have a reserve frequency if the 721 contract's flags don't allow it to.
|
|
962
|
+
if (flags.noNewTiersWithReserves && tierToAdd.reserveFrequency != 0) {
|
|
964
963
|
revert JB721TiersHookStore_ReserveFrequencyNotAllowed({tierId: tierId});
|
|
965
964
|
}
|
|
966
965
|
|