mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
mcMMO no longer ignores cancelled block place events
This commit is contained in:
parent
5d010594dd
commit
a2f9ab70aa
@ -14,6 +14,7 @@ Version 2.1.4
|
|||||||
Advanced Salvage now uses a rank system
|
Advanced Salvage now uses a rank system
|
||||||
Arcane Salvage now goes by your rank to determine the maximum amount of materials salvaged and is no longer percentage based
|
Arcane Salvage now goes by your rank to determine the maximum amount of materials salvaged and is no longer percentage based
|
||||||
Fixed a bug where Iron Arm was checking for Iron Grip to be unlocked instead of itself
|
Fixed a bug where Iron Arm was checking for Iron Grip to be unlocked instead of itself
|
||||||
|
(Plugin Compatibility) mcMMO no longer ignores cancelled block place events (this is to prevent XP gains from placed blocks)
|
||||||
(Plugin Compatibility) mcMMO now ignores cancelled events relating to the player left or right clicking
|
(Plugin Compatibility) mcMMO now ignores cancelled events relating to the player left or right clicking
|
||||||
(Locale) Changed the string for "Salvage.Ability.Bonus.1" to fit the new material recovery mechanics of Salvage
|
(Locale) Changed the string for "Salvage.Ability.Bonus.1" to fit the new material recovery mechanics of Salvage
|
||||||
(Config) Added a toggle for the new endermite enderman xp farm fix in experience.yml "ExploitFix.EndermanEndermiteFarms"
|
(Config) Added a toggle for the new endermite enderman xp farm fix in experience.yml "ExploitFix.EndermanEndermiteFarms"
|
||||||
|
@ -156,7 +156,7 @@ public class BlockListener implements Listener {
|
|||||||
*
|
*
|
||||||
* @param event The event to watch
|
* @param event The event to watch
|
||||||
*/
|
*/
|
||||||
@EventHandler(priority = EventPriority.MONITOR, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.MONITOR)
|
||||||
public void onBlockPlace(BlockPlaceEvent event) {
|
public void onBlockPlace(BlockPlaceEvent event) {
|
||||||
/* WORLD BLACKLIST CHECK */
|
/* WORLD BLACKLIST CHECK */
|
||||||
if(WorldBlacklist.isWorldBlacklisted(event.getBlock().getWorld()))
|
if(WorldBlacklist.isWorldBlacklisted(event.getBlock().getWorld()))
|
||||||
|
Loading…
Reference in New Issue
Block a user