|
|
@ -41,10 +41,12 @@ public class TruenoHologram_v1_10_R1 implements TruenoHologram{ |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Location getLocation(){ |
|
|
|
return this.location; |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public Player getPlayer(){ |
|
|
|
return player; |
|
|
|
} |
|
|
@ -125,6 +127,7 @@ public class TruenoHologram_v1_10_R1 implements TruenoHologram{ |
|
|
|
spawn(); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void update(ArrayList<String> lines){ |
|
|
|
if(this.player != null){ |
|
|
|
int ind = 0; |
|
|
@ -218,6 +221,7 @@ public class TruenoHologram_v1_10_R1 implements TruenoHologram{ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void updateLine(int index, String text){ |
|
|
|
if(this.lines.size() >= index){ |
|
|
|
int realindex = (this.lines.size()-1)-index; |
|
|
@ -256,6 +260,7 @@ public class TruenoHologram_v1_10_R1 implements TruenoHologram{ |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void removeLine(int index){ |
|
|
|
if(this.lines.size() >= index){ |
|
|
|
int realindex = (this.lines.size()-1)-index; |
|
|
@ -271,6 +276,7 @@ public class TruenoHologram_v1_10_R1 implements TruenoHologram{ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void delete(){ |
|
|
|
despawn(); |
|
|
|
this.player = null; |
|
|
|