fixed serialization code for CubotShield

This commit is contained in:
Dylan Sheehy 2018-01-05 11:20:52 -06:00
parent 7e773699b6
commit 1da894959e

View File

@ -26,6 +26,9 @@ public class CubotShield extends CpuHardware {
public BasicDBObject mongoSerialise() { public BasicDBObject mongoSerialise() {
BasicDBObject dbObject = new BasicDBObject(); BasicDBObject dbObject = new BasicDBObject();
dbObject.put("hwid", HWID);
dbObject.put("cubot", cubot.getObjectId());
return dbObject; return dbObject;
} }