Archived
0

Added /lct (like /lc but for tileentities)

This commit is contained in:
Pepich
2018-06-30 14:30:07 +02:00
parent a4aaa233f8
commit a50141f2c5
2 changed files with 131 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package com.redstoner.modules.tilechunks;
import org.bukkit.Location;
import org.bukkit.World;
public class LaggyTileChunk {
public final int x, y, z, amount;
public final World world;
public LaggyTileChunk(int x, int y, int z, World world, int amount) {
this.x = x;
this.y = y;
this.z = z;
this.world = world;
this.amount = amount;
}
public Location getLocation() {
return new Location(world, x, y, z);
}
}