Skip to content

Releases: Wertik/BlockRegen

3.20.3

06 Mar 20:38
Compare
Choose a tag to compare

Bugfixes

  • allow all non-whitespace characters in placeholders

3.20.3-SNAPSHOT

04 Mar 23:10
Compare
Choose a tag to compare
3.20.3-SNAPSHOT Pre-release
Pre-release

Bugfixes

  • allow all non-whitespace characters in placeholders

3.20.2

04 Mar 22:26
Compare
Choose a tag to compare

Bugfixes

  • versions below 1.13.2 not working due to a missing method in the physics listener
  • add string comparisons to == and != operators in condition placeholder expressions

3.20.2-SNAPSHOT

08 Feb 17:06
Compare
Choose a tag to compare
3.20.2-SNAPSHOT Pre-release
Pre-release

Bugfixes

  • versions below 1.13.2 not working due to a missing method in the physics listener

3.20.1

30 Jan 23:08
Compare
Choose a tag to compare

Bugfixes

  • ignore cancelled events for BlockRegen (fixes compatibility with Denizen)

3.20.0

23 Jan 22:45
Compare
Choose a tag to compare

Features

  • Add support for pink petals on version 1.20 and above

3.19.0

20 Jan 12:58
Compare
Choose a tag to compare

Features

  • Advanced conditions - it's now possible to supply complex conditions for block break and drops. These conditions can be composed into logical expressions.
diamond:
  conditions:
    tool:
      # Will match either a diamond or a netherite pickaxe.
      material:
        - DIAMOND_PICKAXE
        - NETHERITE_PICKAXE
      enchants:
        - FORTUNE > 2
    # Check against a placeholder value.
    placeholder: "%player_y% > 100"
    # Random chance
    chance: 50.7
    # Job levels
    jobs/levels:
      - MINER > 10

More about conditions on the wiki.

  • Conditions for tools from ItemsAdder ia/tool, Oraxen oraxen/tool, Nexo nexo/tool and MMOItems mmoitems/tool.
conditions:
  ia/tool: myitems:cool_pickaxe

Bugfixes

  • Drops now drop in the middle of the broken block to prevent glitching, thanks to @gkhaavik
  • Retry loading regeneration processes if a preset fails to load

3.18.1

05 Jan 10:55
Compare
Choose a tag to compare

Bugfixes

  • Fix drop item amounts with the format low-high not loading properly due to bad regex

3.18.0

04 Jan 01:20
Compare
Choose a tag to compare

Features

  • Added drops from external plugins (Oraxen and ItemsAdder so far)
drop-item:
  item: ia:myitems:red_block
  amount: 3
  drop-naturally: true
  chance: 10
  • Added support for multiple materials in target-material
target-material: STONE;COBBLESTONE;COAL_ORE
  • Added a stats command /blockregen stats that shows the current count of running processes.
  • regen-delay: -1 now makes the block never regenerate. These blocks are meant to be regenerated manually through the /blockregen regen command.

Bugfixes

  • Fixed issues with materials from 1.21.4 not being recognized (aka fixed 1.21.4 support)
  • Fixed trampling interaction with worldguard and residence
  • Fixed farmland being placed under sugarcanes
  • Fixed sugarcanes not being handled properly as multiblock crops
  • Fixed presets not being correctly recognized in multiblock crop handling

3.17.3

31 Dec 17:11
Compare
Choose a tag to compare

Bugfixes

  • Don't handle trampling when the interact event is cancelled