Search results

  1. Y

    How can i edit world asynchronous?

    Currently, i'm doing it using setBlock() in asynctask. It works, but sometimes I getting ConcurrentModificationException @Override public void onRun(){ this.level.setBlock(new Vector(x, y, z), Block.get(Block.STONE)); }
  2. Y

    Why is fake inventory closes automatically after 3-4 seconds after open?

    I'm making a command which is used to see someone's enderchest inventory. (Nukkit 1.1 last build after 1.2), Here is the code: //class which extends player public void openInventory(Inventory inventory) { if(this.getSession().isInvsee()){ this.getSession().setInvsee(true)...
Top