SteamWar/BauSystem
Archiviert
13
0

Fixing Yoyo Code

Dieser Commit ist enthalten in:
Chaoscaot 2020-10-28 21:42:43 +01:00
Ursprung 641a7bb6ec
Commit 897a18d8b3

Datei anzeigen

@ -158,7 +158,7 @@ public class AutoLoader extends IAutoLoader implements Listener {
public void onPlayerInteract(PlayerInteractEvent event){ public void onPlayerInteract(PlayerInteractEvent event){
if (event.getAction() != Action.RIGHT_CLICK_BLOCK && event.getAction() != Action.PHYSICAL) if (event.getAction() != Action.RIGHT_CLICK_BLOCK && event.getAction() != Action.PHYSICAL)
return; return;
if (event.getClickedBlock().getBlockData().getMaterial() == Material.OBSERVER) if (event.getClickedBlock().getType() == Material.OBSERVER)
return; return;
if (event.getPlayer().isSneaking()) if (event.getPlayer().isSneaking())
return; return;