How is the code in Eclipse where you can't move your items in minecraft like with a lobbysystem
First of all, I only recommend that you code with IntelliJ.
You can cancel the move in the InventoryClickEvent.
For example like this: @EventHandler
public void onClick (InventoryClickEvent e) {
e.setCancelt (true);
(Is written by hand).