- Fixed that if 2 or more players bought the same item at the same time and the currency plugin didn't respond fast enough, both of them were charged, but only one of them got the item. Now the plugin blocks new purchases for the same item while there is one pending.
- Improved the plugin's debug mode, now if you enabled the "debug" setting at the end of the config, it will display information related to the blacklist logic (it is printed after /ah sell is used) that can be used to figure out why an item is allowed or now.
- Made the blacklist-items name field now also check item name, (in the past it was only custom name) and added an item-model blacklist option.
- Migrated the "my items" and "expired items" guis as well to the new faster system introduced in 1.34.0 version for the main gui. (This requires no changes in your configuration, it is just an internal change)
- Fixed that some buttons didn't update in the "my items" gui.
- Fixed that displayed item prices were sometimes incorrect after refreshing since the rewrite due to threading issues with the number formatter.
- Fixed that the previous version didn't get remapped because of the new 26.1 module required java 25. This version now should work in all minecraft versions from 1.20.2 to 26.1.1 even on java 21.
- Added 26.1 and 26.1.1 support. (The plugin now supports everything between 1.20.2 and 26.1.1)
- Moved the update notifier to use our own internal api for more accurate information and to prevent it not working if the provider site goes down.
- Made it possible to use the %current_page% and %max_page% placeholders for item conditions. This can be used to for example only show the page arrows when they can actually do something:
- Made it possible to remove the shulker item from the shulker preview menu. (just remove the section from the gui file)YAML:previous-page: slot: 45 material: ARROW conditions: - '%current_page% > 1' name: '�CCFFBack' lore: - '&fClick to go to the previous page' actions: - '[PAGE] previous' - '[SOUND] ui.button.click|1|1' next-page: slot: 53 material: ARROW conditions: - '%current_page% < %max_page%' name: '�CCFFNext' lore: - '&fClick to go to the next page' actions: - '[PAGE] next' - '[SOUND] ui.button.click|1|1'
