3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-18 22:10:03 +02:00

Worked around brokenness in PlayerInteractEvent

Dieser Commit ist enthalten in:
zml2008 2011-08-17 13:33:01 -07:00
Ursprung 59ade7a386
Commit 3c92bd9451

Datei anzeigen

@ -87,7 +87,7 @@ public class WorldEditPlayerListener extends PlayerListener {
*/
@Override
public void onPlayerInteract(PlayerInteractEvent event) {
if (event.isCancelled())
if (event.isCancelled() && event.hasBlock())
return;
if (event.getAction() == Action.LEFT_CLICK_BLOCK) {
LocalWorld world = new BukkitWorld(event.getClickedBlock().getWorld());