WARNING
I recommend deleting your old lang configuration (lang folder) and let NewAmazingLuckyBlocks create it again since some lang key names have changed.
=== GENERAL ===
- Added Minecraft 1.19.3 support
- Added new world system
+ You can add or remove worlds to the world list like before.
+ But now, there is a WorldListType which can be DISABLED, WHITELIST and BLACKLIST.
DISABLED: NewAmazingLuckyBlocks will be enabled in all worlds
WHITELIST: NewAmazingLuckyBlocks will be only enabled in the worlds of the list
BLACKLIST: NewAmazingLuckyBlocks will be only enabled in the worlds that aren't in the list
+ You can change the WorldListType using the
/alb worlds changeListMode command or from the
/alb worlds menu
- Now, you can modify enchantments of enchanted books in ItemRewards
- Now, you can spawn angry bees and wolves in EntityRewards
- Added more options to the dropOnBlockBreak section in the config
Code (YAML):
# General LuckyBlock configurations
LuckyBlock:
DropOnBlockBreak
:
# If enabled, when you break a block (not LuckyBlock),
# there is a probability that it dropped a LuckyBlock
enable
: false
# If enabled, LuckyBlocks will only be dropped in survival mode
survivalOnly
: true
# Disable LuckyBlock drop when using a tool with silk touch.
# If this option is set to false, players will be able to break and place
# the same block whenever they want if they use a tool with silk touch.
# So they will be able to get an infinite amount of LuckyBlocks
disableWithSilkTouch
: true
# Probability of dropping LuckyBlocks (between 0 and 100)
probability
: 50
# If enabled, the original item will be dropped with the LuckyBlock.
# If not, only the LuckyBlock will be dropped
dropOriginalItem
: true
# List of blocks where this mode is enabled.
# If the list is empty (enabledBlocks: []),
# and 'enable' is true then, all blocks will use this mode
# You can find the material list here:
# https://github.com/CryptoMorin/XSeries/blob/master/src/main/java/com/cryptomorin/xseries/XMaterial.java
enabledBlocks
:
- STONE
- COAL_ORE
- EMERALD_ORE
- DIAMOND_ORE
- IRON_ORE
- GOLD_ORE
- LAPIS_ORE
- NETHER_QUARTZ_ORE
- REDSTONE_ORE
# List of commands to execute after dropping a LuckyBlock.
# You can use %bx%, %by% and %bz% to get the x, y and z coordinates
# of the broken block that dropped that LuckyBlock and %player%
# to get the player's name.
# You should enter one command per line without the first '/'
# For example: - say %player% got a LuckyBlock at %bx% %by% %bz%
commands
:
[
]
- Added the
/alb take command. It removes the items that the
/alb give command gives
=== OTHER ===
- Fixed a bug related to TrapRewards in 1.19
- Other bug fixes and code improvements