Fix Dwarf can't see workshop action.

Contributed by yksdtc.
This commit is contained in:
MobiusDev
2017-01-10 20:11:30 +00:00
parent 0b3c7e3d1d
commit 37e8cae36d
2 changed files with 11 additions and 1 deletions

View File

@@ -396,6 +396,15 @@ public enum ClassId implements IIdentifiable
return _parent;
}
public final ClassId getRootClassId()
{
if (_parent != null)
{
return _parent.getRootClassId();
}
return this;
}
/**
* @return list of possible class transfer for this class
*/