refactor: make maps in PositionPlugin public for access with servereval
This commit is contained in:
parent
b3615770dc
commit
4764a8947e
1 changed files with 3 additions and 3 deletions
|
@ -30,9 +30,9 @@ public class PositionPlugin extends Bot.Listener {
|
||||||
|
|
||||||
public Vector3i position = Vector3i.from(0, 0, 0);
|
public Vector3i position = Vector3i.from(0, 0, 0);
|
||||||
|
|
||||||
private final Map<Integer, PlayerEntry> entityIdMap = new HashMap<>();
|
public final Map<Integer, PlayerEntry> entityIdMap = new HashMap<>();
|
||||||
private final Map<Integer, Vector3f> positionMap = new HashMap<>();
|
public final Map<Integer, Vector3f> positionMap = new HashMap<>();
|
||||||
private final Map<Integer, Rotation> rotationMap = new HashMap<>();
|
public final Map<Integer, Rotation> rotationMap = new HashMap<>();
|
||||||
|
|
||||||
public PositionPlugin (Bot bot) {
|
public PositionPlugin (Bot bot) {
|
||||||
this.bot = bot;
|
this.bot = bot;
|
||||||
|
|
Loading…
Reference in a new issue