@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bananapus/721-hook-v6",
3
- "version": "0.0.52",
3
+ "version": "0.0.53",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -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
- // OR if manual minting is allowed.
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