|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
package eu.ruekov.ruakij.LinkedBeaconTeleporters.linkedBeaconTeleporter;
|
|
|
|
|
|
|
|
|
|
import eu.ruekov.ruakij.LinkedBeaconTeleporters.Function;
|
|
|
|
|
import org.bukkit.Location;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
@ -10,6 +11,9 @@ public abstract class LinkedBeaconTeleporter {
|
|
|
|
|
// Persistent id for linked-beacons
|
|
|
|
|
public String teleporterId;
|
|
|
|
|
|
|
|
|
|
LinkedBeaconTeleporter(){
|
|
|
|
|
this.teleporterId = Function.randomString("abcdefghijklmnopqrstuvwxyz0123456789", 10);
|
|
|
|
|
}
|
|
|
|
|
public LinkedBeaconTeleporter(String teleporterId){
|
|
|
|
|
this.teleporterId = teleporterId;
|
|
|
|
|
}
|
|
|
|
|