You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
827 B
42 lines
827 B
package me.kaZep.Base;
|
|
|
|
import org.bukkit.Bukkit;
|
|
import org.bukkit.Location;
|
|
import org.bukkit.block.Furnace;
|
|
|
|
public class FurnaceData {
|
|
|
|
Location pos;
|
|
String owner;
|
|
long time;
|
|
public FurnaceData(Location pos, String owner) {
|
|
this.pos=pos;
|
|
this.owner=owner;
|
|
this.time=Main.SERVER_TICK_TIME+9000;
|
|
}
|
|
|
|
public void setOwner(String owner) {
|
|
this.owner=owner;
|
|
}
|
|
|
|
public short getBurnTime() {
|
|
if ((Furnace)Bukkit.getWorld("world").getBlockAt(pos)!=null) {
|
|
Furnace furnace = (Furnace)Bukkit.getWorld("world").getBlockAt(pos).getState();
|
|
return furnace.getBurnTime();
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
public Location getLoc() {
|
|
return pos;
|
|
}
|
|
|
|
public long getTime() {
|
|
return time;
|
|
}
|
|
public void resetTime() {
|
|
this.time=Main.SERVER_TICK_TIME+9000;
|
|
}
|
|
|
|
}
|
|
|