mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-08-02 03:15:52 -04:00
Refactored GUILD object
This commit is contained in:
@@ -85,12 +85,14 @@ public class TangibleObject extends SWGObject implements Serializable {
|
||||
super(objectID, planet, position, orientation, template);
|
||||
messageBuilder = new TangibleMessageBuilder(this);
|
||||
if (this.getClass().getSimpleName().equals("TangibleObject")) setIntAttribute("volume", 1);
|
||||
otherVariables = getOtherVariables(); // FIXME temp
|
||||
}
|
||||
|
||||
public TangibleObject(long objectID, Planet planet, String template) {
|
||||
super(objectID, planet, new Point3D(0, 0, 0), new Quaternion(1, 0, 1, 0), template);
|
||||
messageBuilder = new TangibleMessageBuilder(this);
|
||||
if (this.getClass().getSimpleName().equals("TangibleObject")) setIntAttribute("volume", 1);
|
||||
otherVariables = getOtherVariables(); // FIXME temp
|
||||
}
|
||||
|
||||
public TangibleObject() {
|
||||
|
||||
Reference in New Issue
Block a user