* Players cannot put out fire anymore. Fixes #72.

This commit is contained in:
RandomPanda30 2013-10-18 16:50:28 +01:00
parent 785eef47e9
commit 8fcf661f5b

View File

@ -30,5 +30,8 @@ public class OnBlockBreakEvent implements Listener {
event.setCancelled(true);
}
}
if (event.getBlock().equals(Material.FIRE)) {
event.setCancelled(true);
}
}
}