mirror of
https://bitbucket.org/projectswg/cucore.git
synced 2026-08-05 05:17:57 -04:00
Added static service to spawn bank and ticket terminals
This commit is contained in:
@@ -38,6 +38,7 @@ import network.packets.swg.zone.baselines.Baseline.BaselineType;
|
||||
import network.packets.swg.zone.object_controller.DataTransform;
|
||||
import network.packets.swg.zone.object_controller.DataTransformWithParent;
|
||||
import resources.Location;
|
||||
import resources.Terrain;
|
||||
import resources.common.CRC;
|
||||
import resources.containers.ContainerPermissions;
|
||||
import resources.containers.ContainerResult;
|
||||
@@ -447,6 +448,22 @@ public abstract class SWGObject implements Serializable, Comparable<SWGObject> {
|
||||
return loc;
|
||||
}
|
||||
|
||||
public double getX() {
|
||||
return location.getX();
|
||||
}
|
||||
|
||||
public double getY() {
|
||||
return location.getY();
|
||||
}
|
||||
|
||||
public double getZ() {
|
||||
return location.getZ();
|
||||
}
|
||||
|
||||
public Terrain getTerrain() {
|
||||
return location.getTerrain();
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return objectName;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user