MassiveCore - Change to database system.

This commit is contained in:
Olof Larsson 2015-11-21 22:26:00 +01:00
parent 5deb16dc74
commit 259bf27f3e

View File

@ -51,7 +51,7 @@ public class BoardColl extends Coll<Board> implements BoardInterface
{
if (oid == null) return null;
if (oid instanceof String) return (String)oid;
if (oid instanceof Board) return this.getId(oid);
if (oid instanceof Board) return ((Board)oid).getId();
return MUtil.extract(String.class, "worldName", oid);
}