mirror of
https://github.com/ayunami2000/ayunEagVidMap.git
synced 2024-12-21 22:24:10 -08:00
fix
This commit is contained in:
parent
e2bd6401ae
commit
7fd7cebf64
|
@ -22,7 +22,6 @@ public class Main extends JavaPlugin implements CommandExecutor, Listener {
|
||||||
private Vector audioLoc = new Vector(0, 100, 0);
|
private Vector audioLoc = new Vector(0, 100, 0);
|
||||||
private String url = "";
|
private String url = "";
|
||||||
private boolean urlChanged = true;
|
private boolean urlChanged = true;
|
||||||
private int syncTask = -1;
|
|
||||||
private final int[] mapSize = {1, 1};
|
private final int[] mapSize = {1, 1};
|
||||||
private int mapSizeCap = 10;
|
private int mapSizeCap = 10;
|
||||||
private int mapOffset = 0;
|
private int mapOffset = 0;
|
||||||
|
@ -36,14 +35,12 @@ public class Main extends JavaPlugin implements CommandExecutor, Listener {
|
||||||
public void onEnable(){
|
public void onEnable(){
|
||||||
this.saveDefaultConfig();
|
this.saveDefaultConfig();
|
||||||
this.rlConfig();
|
this.rlConfig();
|
||||||
syncTask = this.getServer().getScheduler().scheduleSyncRepeatingTask(this, this::syncToAllPlayers, 10000, 10000); // sync every 10 seconds
|
|
||||||
this.getCommand("ayunvid").setExecutor(this);
|
this.getCommand("ayunvid").setExecutor(this);
|
||||||
this.getServer().getPluginManager().registerEvents(this, this);
|
this.getServer().getPluginManager().registerEvents(this, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onDisable(){
|
public void onDisable(){
|
||||||
this.getServer().getScheduler().cancelTask(syncTask);
|
|
||||||
sendToAllPlayers(videoMapCodec.disableVideoBukkit());
|
sendToAllPlayers(videoMapCodec.disableVideoBukkit());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user