mirror of
https://github.com/ayunami2000/ayunEagVidMap.git
synced 2024-12-21 14:14:11 -08:00
lol
This commit is contained in:
parent
6e125a8f4d
commit
c003a83b17
|
@ -14,9 +14,8 @@ public class Main extends JavaPlugin implements CommandExecutor, Listener {
|
||||||
//todo: add queue command + store audio loc world & dont send to players in other worlds
|
//todo: add queue command + store audio loc world & dont send to players in other worlds
|
||||||
|
|
||||||
private VideoMapPacketCodecBukkit videoMapCodec = null;
|
private VideoMapPacketCodecBukkit videoMapCodec = null;
|
||||||
private int[][] mapIds;
|
|
||||||
private Vector audioLoc = new Vector(0, 100, 0);
|
private Vector audioLoc = new Vector(0, 100, 0);
|
||||||
private String url = null;
|
private String url = "";
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onEnable(){
|
public void onEnable(){
|
||||||
|
@ -52,7 +51,7 @@ public class Main extends JavaPlugin implements CommandExecutor, Listener {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setSize(int width, int height) {
|
private void setSize(int width, int height) {
|
||||||
mapIds = new int[height][width];
|
int[][] mapIds = new int[height][width];
|
||||||
int offset = this.getConfig().getInt("offset");
|
int offset = this.getConfig().getInt("offset");
|
||||||
for (int y = 0; y < mapIds.length; y++) {
|
for (int y = 0; y < mapIds.length; y++) {
|
||||||
for (int x = 0; x < mapIds[y].length; x++) {
|
for (int x = 0; x < mapIds[y].length; x++) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user