▶️ ЗАБЕРИ СВОИ 8 ПОДАРКОВ 🎁 ПРИ СОЗДАНИИ СВОЕГО МАЙНКРАФТ СЕРВЕРА
10.2K
44

1.21.11 Support, New Features and Bugfixes

release30 марта 2026 г.

Added:

  • Support 1.21.11 (8858957)
  • UUID String for skull owner (57fbb5d)
    • You can now specify the UUID of the player skin as the skull-owner to be set for the item.
  • translatable update messages (a427733)
  • itemflag messages (b7cedd5)
    • You can now specify messages that will be sent when an itemflag is triggered.
    • Support has been added for the following itemflags; placement, inventory-modify, cancel-equip, not-hat, cancel-events, item-store, item-modifiable, item-craftable, item-repairable, ip-limit, death-drops, self-drops, and erase-drops.
    • A message is defined by simply specifying the itemflag name -message e.g: self-drops-message: '&cYou cannot drop items!'

Fixed:

  • Folia AuthMe support (19a14ea)
  • item-repairable itemflag (c16b966)
    • Shift+Clicking the item into a crafting table would occasionally result in the item not being returned to the player.
  • death-keep for crafting items (a5e1ff7)
    • Items were being incorrectly dropped when the gamerule keepInventory was true.
    • If dying fast enough, it was also possible to have the items be dropped on death.
  • incorrect cooldown for on_hold commands (a7876b7)
  • item-store itemflag storing in pots (c736778)
    • item-store will now properly block the storage of items in FLOWER_POT and DECORATED_POT.
  • folia delay ticks exception (c0b78bc)
  • windowId on paperspigot (4f0728a)
  • database failure when isClosed not supported (63590ef)
    • Fixes a major bug that prevented data from being fetched from the database when the isClosed method wasn't implemented in the specific sql driver version.
    • The fallback is to assume connections aren't closed to allow the statement to try executing. If it fails, the connection will then be assumed closed and tries to get the connection again.
  • rendering menu pages that do not exist (cec60a0)
  • updateInventory (9abb123)
    • Fixes the updateInventory function in Legacy Minecraft Versions due to incorrectly not using the windowId.
    • This fixes ghost items when viewing an open container.
  • implement proper reflections caching (ed16760)
    • Improves performance, especially on papers new on-the-fly remapping, which is not performant.

Changed:

  • implement proper reflections caching (32820bd)
    • Improves performance on server forks utilizing on-the-fly remapping.
  • rewrite item animation handler (6ba7f8a)
    • Fixes item animations still being ran when the animations were suppose to be closed.
    • Fixes duplicate animation tasks when using /ij remove and /ij get causing animation flicker.
    • Fixes animation flicker when two players are viewing the same inventory.
    • The item(s) will now animate based on the first viewing player.
    • Fixes the accidental closing of animations when items are removed or lost. Items could exist in containers so we should continue trying to animate.
  • support 1.21.4+ pick item handling (3da6ac7)
  • improve handling crafting (e2194bc)

Removed

  • ProtocolLib as soft depend (d4406c4)
  • Temporarily disabled SkinsRestorer support (212e042)
    • API in newer versions of SkinsRestorer has become unstable, resulting in server crashes when fetching skins on the main thread.

1.21.9 & 1.21.10 Support and Bugfixes

release10 ноября 2025 г.

Added:

  • Support 1.21.9/1.21.10 (fa6e625)
  • Support Crafters (a33395d)
    • Custom Recipes will now be properly handled by crafters.

Fixed:

  • toggle command overwriting items (631d3bd)
    • Toggling an item will no longer overwrite items unless the item explicitly allow overwrite or global overwrite is enabled.
  • toggle command tab completion (fe9e9b2)
    • Fixes tab completion not functioning for toggle commands.
  • cache isPaper and isFolia (e051413)

Changed:

  • cache isPaper and isFolia (9da46a3)

1.21.7 & 1.21.8 Support and Bugfixes

release25 сентября 2025 г.

Added:

  • use-cooldown visual (61868a0)

    • The use-cooldown is now visually shown on the custom item in server versions 1.21.3+.
  • Support 1.21.8 (aaa02bf)

  • Support 1.21.7 (abd6b80)

  • #getNodes API method (120cd19)

    • Returns a list of all defined itemNodes.

Fixed:

  • multi-slot items (f61f21c)

    • Fixes multi-slots being ignored, only the first slot was being given.
  • zero commands cost in menu (bef06ad)

  • delayed item commands on paper (04b3b67)

    • Paper changed to region schedulers which was causing a noticeable delay when running item commands.
  • use-cooldown bugs (6e60579)

  • Was not well designed causing a cooldown to trigger for the wrong item or to trigger when it shouldn't have. Use cooldown is now triggered properly upon the respective action.

  • null paper edge case (8794941)

  • properties (01c436a)

    • Fixes properties being cut off when saving. Fixes tag list errors on 1.20.5+.
  • vanilla-control itemflag (46f3161)

    • Wasn't properly being identified as a custom item when a name and lore were not specified.
  • item-store trade errors (9062aa8)

    • Was throwing errors on older server versions.
  • permissions detected as clickable links (a050e98)

  • region-enter duplicating items (7fe7d68)

  • dummy attributes (c3514cf)

Changed:

  • improve region handling performance (d9068d0)

    • Will help avoid expensive calls when they're unnecessary.
  • bump commons-lang (7ca0e85)

  • improve API docs (12db9ed)

    • Clarifies some functionality of the API functions

Remove:

1.21.6 Support

release23 июня 2025 г.

Added:

  • Support 1.21.6 (7cf4c15)
  • model components (5d7162a)
    • You can now specify model components for the 1.21.4+ resource packs.
    • You can specify multiple values, example; strings: 'chest_old, tutorial_sword'
    • Example of all available options;
    model-components:
      strings: 'chest_old'
      colors: ORANGE
      flags: 'true'
      floats: '20.0'

Fixed:

  • always-give itemflag (c04e592)
    • The proper function of the always-give itemflag is to ALWAYS give the item upon performing a trigger or getting the item via commands, regardless of the player already having the item or not. This wasn't being respected and was not giving the item in the designated slot FIRST before adding it to the next available if the designated slot was occupied.
  • incorrectly detecting empty slots (1d1d8e5)
    • Fixes an issue with Paper where empty slots are no longer null, instead they are Material.AIR.

1.21.5 Support and Bugfixes

release29 мая 2025 г.

Added:

  • support custom sounds (3af8c5f)
    • Sounds from resource packs are now supported for commands-sounds and teleport-sound.
  • Support 1.21.5 (00e7936)

Fixed:

  • economy balance checking (3617208)
    • Now only checks the players economy balance if the custom item is using a commands-cost. Fixes edge case errors with users not using economy while having a registered economy plugin in a disabled state.
  • pale_oak_boat enum not present (0e0ceaa)
    • Issue was with paper or related forks..
  • item-store itemflag with villager trades (65fe312)
    • Now properly prevents the trading of items with the item-store itemflag.
  • Wait for MySQL connection (9c40ad6)
    • Players were able to join the server before the MySQL connection was established, resulting in players getting items they had already received. When the server is starting up, it will now wait for the plugin to successfully establish MySQL connection. Fixes issues with first-join and ip-limit.
  • interact offhand commands (0d1c6fa)
    • Certain command executors like damage and swap-item were non-functional for the offhand slot when using the interact command action.
  • ItemMeta is not PotionMeta (54d6cd1)
  • 1.21.5 Paper Spigot deobfuscation (90230a1)
  • SkinsRestorer proxy mode (a6b191c)
    • Fixes the console spam regarding SkinsRestorer being in the unsupported proxy mode.

Changed:

  • update deprecated (8d76a2a)
    • Adds support for the new 1.21.5 methods.
  • remove trim patterns enum (a5b1dc9)
    • This isn't needed and was very convoluted. The trim pattern is literally just the NamespaceKey name + "_ARMOR_TRIM_SMITHING_TEMPLATE". Not defining static values allows us to dynamically support new patterns.
  • French translation corrections (94af689)
    • Corrected by wokonago on Discord.

Совместимость

Minecraft: Java Edition

1.21.x1.20.x1.19.x1.18.x1.17.x1.16.x1.15.x1.14.x1.13.x1.12.x1.11.x1.10.x1.9.x1.8.x1.7.x

Поддерживаемые окружения

Сервер

Создатели

Детали

Лицензия:LGPL-3.0-only
Опубликован:3 года назад
Обновлён:4 дня назад
Главная