Lifeday gifts and collections

This commit is contained in:
Treeku
2013-12-15 01:41:11 +00:00
parent 79e8b2507a
commit b6184fb05a
6 changed files with 130 additions and 1 deletions
+4
View File
@@ -296,6 +296,10 @@ public class ObjectService implements INetworkDispatch {
return createObject(Template, 0, planet, new Point3D(0, 0, 0), new Quaternion(1, 0, 0, 0));
}
public SWGObject createObject(String Template, Planet planet, String customServerTemplate) {
return createObject(Template, 0, planet, new Point3D(0, 0, 0), new Quaternion(1, 0, 0, 0), customServerTemplate);
}
public SWGObject createObject(String Template, Planet planet, float x, float z, float y) {
return createObject(Template, 0, planet, new Point3D(x, y, z), new Quaternion(1, 0, 0, 0));
}